-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbase-eslintrc.json
116 lines (116 loc) · 2.68 KB
/
base-eslintrc.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"extends": [
"airbnb",
"plugin:jsx-a11y/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"header",
"react-hooks",
"jsx-a11y"
],
"settings": {
"import/extensions": [
".js",
".jsx",
".ts",
".tsx",
".json",
".png",
".jpg"
],
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx",
".json",
".ts",
".tsx"
]
}
}
},
"globals": {},
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"react/jsx-filename-extension": [
"error",
{
"extensions": [
".js",
".jsx",
".ts",
".tsx",
".json",
".png",
".jpg"
]
}
],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"react/prop-types": "off",
"react/sort-comp": "off",
"react/default-props-match-prop-types": ["off"],
"no-unused-vars": ["off"],
"import/no-extraneous-dependencies": ["off"],
"max-len": [
"warn",
{
"code": 400,
"tabWidth": 2,
"ignoreComments": true
}
],
"no-underscore-dangle": "off",
"no-plusplus": [2, { "allowForLoopAfterthoughts": true }],
"jsx-a11y/label-has-associated-control": ["off"],
"jsx-a11y/label-has-for": [
"error",
{
"components": [
"Label"
],
"required": {
"every": [
"id"
]
}
}
],
"camelcase": ["warn"],
"import/extensions": "off",
"import/no-unresolved": "off",
"header/header": [
2,
"block", [
"*",
" * Copyright © 2019 Elastic Path Software Inc. All rights reserved.",
" *",
" * This is free software: you can redistribute it and/or modify",
" * it under the terms of the GNU General Public License as published by",
" * the Free Software Foundation, either version 3 of the License, or",
" * (at your option) any later version.",
" *",
" * This software is distributed in the hope that it will be useful,",
" * but WITHOUT ANY WARRANTY; without even the implied warranty of",
" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the",
" * GNU General Public License for more details.",
" *",
" * You should have received a copy of the GNU General Public License",
" * along with this license. If not, see",
" *",
" * https://www.gnu.org/licenses/",
" *",
" *",
" "
]
]
}
}