Skip to content

Commit

Permalink
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/rules.ts
Original file line number Diff line number Diff line change
@@ -181,6 +181,7 @@ export const tseslintRules: Record<string, TSESLint.SharedConfig.RuleEntry> = {
'@typescript-eslint/no-unsafe-assignment': ['error'],
'@typescript-eslint/no-unsafe-call': ['error'],
'@typescript-eslint/no-unsafe-declaration-merging': ['error'],
'@typescript-eslint/no-unsafe-enum-comparison': ['error'],
'@typescript-eslint/no-unsafe-function-type': ['error'],
'@typescript-eslint/no-unused-expressions': [
'error',
1 change: 1 addition & 0 deletions src/test/_expected-exported-value.ts
Original file line number Diff line number Diff line change
@@ -353,6 +353,7 @@ export const expectedTseslintRules: Record<
'@typescript-eslint/no-unsafe-assignment': ['error'],
'@typescript-eslint/no-unsafe-call': ['error'],
'@typescript-eslint/no-unsafe-declaration-merging': ['error'],
'@typescript-eslint/no-unsafe-enum-comparison': ['error'],
'@typescript-eslint/no-unsafe-function-type': ['error'],
'@typescript-eslint/no-unused-expressions': [
'error',
1 change: 0 additions & 1 deletion src/test/_rules_to_consider.ts
Original file line number Diff line number Diff line change
@@ -184,7 +184,6 @@ export const promiseRulesToConsider = [
]

export const tseslintRulesToConsider = [
'@typescript-eslint/no-unsafe-enum-comparison',
'@typescript-eslint/no-unsafe-member-access',
'@typescript-eslint/no-unsafe-return',
'@typescript-eslint/no-unsafe-unary-minus',

0 comments on commit 3d1e6a4

Please sign in to comment.