-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy path.eslintrc.json
More file actions
38 lines (38 loc) · 843 Bytes
/
.eslintrc.json
File metadata and controls
38 lines (38 loc) · 843 Bytes
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
{
"extends": [
"airbnb",
"plugin:prettier/recommended",
"plugin:jsx-a11y/recommended"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"es6": true,
"jest": true,
"serviceworker": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".tsx"] }],
"jsx-a11y/anchor-is-valid": [ "error", {
"aspects": ["noHref"]
}],
"jsx-a11y/label-has-for": 0,
"no-param-reassign": [2, { "props": false }],
"react/destructuring-assignment": 0,
"react/jsx-one-expression-per-line": 0,
"react/jsx-wrap-multilines": 0
}
}