Skip to content

Commit

Permalink
feat!: @typescript-eslint/no-duplicate-enum-values
Browse files Browse the repository at this point in the history
  • Loading branch information
mightyiam committed Jul 20, 2024
1 parent 2593e44 commit 499b812
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ const rules = {
{ ignoreArrowShorthand: false, ignoreVoidOperator: false },
],
'@typescript-eslint/no-dupe-class-members': ['error'],
'@typescript-eslint/no-duplicate-enum-values': ['error'],
'@typescript-eslint/no-dynamic-delete': ['error'],
'@typescript-eslint/no-empty-interface': [
'error',
Expand Down
1 change: 1 addition & 0 deletions src/test/_expected-exported-value.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ export const expectedExportedValue: TSESLint.FlatConfig.Config = {
{ ignoreArrowShorthand: false, ignoreVoidOperator: false },
],
'@typescript-eslint/no-dupe-class-members': ['error'],
'@typescript-eslint/no-duplicate-enum-values': ['error'],
'@typescript-eslint/no-dynamic-delete': ['error'],
'@typescript-eslint/no-empty-interface': [
'error',
Expand Down
1 change: 0 additions & 1 deletion src/test/_rules_to_consider.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export const rulesToConsider = [
'@typescript-eslint/no-duplicate-enum-values',
'@typescript-eslint/no-duplicate-type-constituents',
'@typescript-eslint/no-empty-function',
'@typescript-eslint/no-empty-object-type',
Expand Down

0 comments on commit 499b812

Please sign in to comment.