-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.eslintrc
43 lines (43 loc) · 1.31 KB
/
.eslintrc
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"extends": [
"standard-with-typescript",
"plugin:react/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/require-await": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-dynamic-delete": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/prefer-readonly": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/quotes": "off",
"array-bracket-spacing": "off",
"dot-notation": "off",
"lines-between-class-members": "off",
"no-useless-catch": "off",
"no-case-declarations": "off",
"object-curly-newline": "off",
"prefer-const": "off",
"quote-props": "off",
"react/prop-types": "off"
},
"settings": {
"react": {
"version": "latest"
}
}
}