Skip to content

Commit f3d5196

Browse files
authored
refactor(eslint): change eslint config (#1689)
1 parent a97bf69 commit f3d5196

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.eslintrc.js

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,12 @@ module.exports = {
109109
'max-depth': 'off',
110110
'@typescript-eslint/member-ordering': 'off',
111111
'array-callback-return': 'off',
112+
'import/no-unresolved': 'off',
112113
},
113-
"overrides": [
114+
overrides: [
114115
{
115-
"files": [
116-
"*.ts",
117-
"*.tsx"
118-
],
119-
"parser": "@typescript-eslint/parser"
120-
}
121-
]
116+
files: ['*.ts', '*.tsx'],
117+
parser: '@typescript-eslint/parser',
118+
},
119+
],
122120
};

0 commit comments

Comments
 (0)