diff --git a/src/index.test.ts b/src/index.test.ts index 3916ba94..ad5047d1 100644 --- a/src/index.test.ts +++ b/src/index.test.ts @@ -141,6 +141,7 @@ test('export', (t): void => { } }], '@typescript-eslint/brace-style': ['error', '1tbs', { allowSingleLine: true }], + '@typescript-eslint/class-literal-property-style': ['error', 'fields'], '@typescript-eslint/comma-dangle': ['error', { arrays: 'never', objects: 'never', @@ -428,7 +429,6 @@ test('all plugin rules are considered', (t) => { // This serves as a todo list and should ideally eventually end up empty // and then fail upon plugin upgrades where new rules are released. const notYetConsideredRules: string[] = [ - 'class-literal-property-style', 'default-param-last', 'explicit-member-accessibility', 'explicit-module-boundary-types', diff --git a/src/index.ts b/src/index.ts index 436c5452..6b048113 100644 --- a/src/index.ts +++ b/src/index.ts @@ -129,6 +129,7 @@ const config: Linter.Config = { } } }], + '@typescript-eslint/class-literal-property-style': ['error', 'fields'], '@typescript-eslint/comma-dangle': ['error', { arrays: 'never', objects: 'never',