Skip to content

Commit 74df12f

Browse files
committed
chore(eslint): disable no-explicit-any rule for TypeScript
This commit updates the ESLint configuration to turn off the '@typescript-eslint/no-explicit-any' rule, allowing the use of 'any' type in TypeScript files. This change may help in easing the transition for existing codebases that utilize 'any' extensively.
1 parent fb18eaa commit 74df12f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.eslintrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@ module.exports = {
88
'eslint:recommended',
99
'plugin:@typescript-eslint/recommended',
1010
],
11+
rules: {
12+
'@typescript-eslint/no-explicit-any': 'off',
13+
},
1114
};

0 commit comments

Comments
 (0)