-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.eslintrc.js
26 lines (26 loc) · 897 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module.exports = {
extends: [
"react-app",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended",
],
plugins: [],
rules: {
"import/no-extraneous-dependencies": ["error"],
"@typescript-eslint/explicit-function-return-type": ["off"],
"@typescript-eslint/explicit-module-boundary-types": ["off"],
"@typescript-eslint/member-delimiter-style": ["off"],
'@typescript-eslint/no-explicit-any': ['off'],
'@typescript-eslint/ban-ts-ignore': ['off'],
'@typescript-eslint/ban-ts-comment': ['off'],
'@typescript-eslint/ban-types': ['off'],
"prettier/prettier": [
"warn",
{ singleQuote: true, semi: false, printWidth: 100, endOfLine: 'auto' }
],
'@typescript-eslint/no-extra-semi': ['off'],
"spaced-comment": ["error", "always", { "markers": ["/"] }]
},
settings: {},
ignorePatterns: ["*.js", "dist/**"],
};