forked from jsdrupal/drupal-admin-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
32 lines (32 loc) · 741 Bytes
/
Copy path.eslintrc.json
File metadata and controls
32 lines (32 loc) · 741 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
{
"extends": [
"airbnb",
"plugin:prettier/recommended",
"plugin:jsx-a11y/recommended"
],
"parser": "babel-eslint",
"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
}
}