Skip to content

Commit

Permalink
Update packages/eslint-plugin/tests/rules/keyword-spacing.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Nov 15, 2022
1 parent 8fbe5fc commit 76d6d84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/eslint-plugin/tests/rules/keyword-spacing.test.ts
Expand Up @@ -12,8 +12,8 @@ import { RuleTester } from '../RuleTester';
// Helpers
//------------------------------------------------------------------------------

const BOTH: Options[0] = { before: true, after: true };
const NEITHER: Options[0] = { before: false, after: false };
const BOTH = { before: true, after: true };
const NEITHER = { before: false, after: false };

/**
* Creates an option object to test an 'overrides' option.
Expand Down

0 comments on commit 76d6d84

Please sign in to comment.