We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a97bf69 commit f3d5196Copy full SHA for f3d5196
.eslintrc.js
@@ -109,14 +109,12 @@ module.exports = {
109
'max-depth': 'off',
110
'@typescript-eslint/member-ordering': 'off',
111
'array-callback-return': 'off',
112
+ 'import/no-unresolved': 'off',
113
},
- "overrides": [
114
+ overrides: [
115
{
- "files": [
116
- "*.ts",
117
- "*.tsx"
118
- ],
119
- "parser": "@typescript-eslint/parser"
120
- }
121
- ]
+ files: ['*.ts', '*.tsx'],
+ parser: '@typescript-eslint/parser',
+ },
+ ],
122
};
0 commit comments