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
@@ -180,6 +180,7 @@ export const tseslintRules: Record<string, TSESLint.SharedConfig.RuleEntry> = {
'@typescript-eslint/no-unsafe-argument': ['error'],
'@typescript-eslint/no-unsafe-assignment': ['error'],
'@typescript-eslint/no-unsafe-call': ['error'],
'@typescript-eslint/no-unsafe-declaration-merging': ['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
@@ -352,6 +352,7 @@ export const expectedTseslintRules: Record<
'@typescript-eslint/no-unsafe-argument': ['error'],
'@typescript-eslint/no-unsafe-assignment': ['error'],
'@typescript-eslint/no-unsafe-call': ['error'],
'@typescript-eslint/no-unsafe-declaration-merging': ['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-declaration-merging',
'@typescript-eslint/no-unsafe-enum-comparison',
'@typescript-eslint/no-unsafe-member-access',
'@typescript-eslint/no-unsafe-return',

0 comments on commit 1ef8375

Please sign in to comment.