-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.eslintrc
More file actions
31 lines (31 loc) · 748 Bytes
/
.eslintrc
File metadata and controls
31 lines (31 loc) · 748 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": 0,
"react/no-array-index-key": 0,
"no-nested-ternary": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"jsx-a11y/label-has-associated-control": 0,
"jsx-a11y/label-has-for": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/no-autofocus": "off",
"no-underscore-dangle": 0,
"no-return-assign": "off",
"no-param-reassign": "off",
"no-use-before-define": "off"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": ["react"],
"env": {
"browser": true,
"commonjs": true,
"jest": true
}
}