-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.eslintrc
66 lines (66 loc) · 1.55 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react/recommended",
"airbnb",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react",
"@typescript-eslint"
],
"rules": {
"space-before-function-paren": "off",
"react/prop-types": "off",
"no-use-before-define": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"import/extensions": "off",
"react/jsx-filename-extension": [
1,
{
"extensions": [
".ts",
".tsx",
".js",
".jsx"
]
}
],
"import/no-unresolved": "off",
"import/no-useless-path-segments": "off",
"import/newline-after-import": "off",
"eol-last": "off",
"react/jsx-closing-bracket-location": "off",
"react/jsx-indent": "off",
"no-extra-semi": "off",
"@typescript-eslint/no-extra-semi": "off",
"react/no-unescaped-entities": "off",
"arrow-body-style": "off",
"react/jsx-max-props-per-line": "off",
"react/jsx-one-expression-per-line": "off",
"object-curly-newline": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"import/prefer-default-export": "off",
"quotes": "off",
"react/jsx-curly-brace-presence": "off",
"jsx-quotes": "off",
"react/jsx-props-no-spreading": "off",
"react/no-children-prop": "off",
"react/require-default-props": "off",
"padded-blocks": "off",
"no-shadow": "off",
"react/self-closing-comp": "off"
}
}