-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.eslintrc
More file actions
36 lines (36 loc) · 1.01 KB
/
.eslintrc
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"parser": "babel-eslint",
"extends": ["airbnb"],
"env": {
"browser": true,
"node": true
},
"rules": {
"arrow-parens": ["error", "as-needed"],
"object-curly-newline": "off",
"no-param-reassign": 0,
"comma-dangle": 0,
"consistent-return": 0,
"import/extensions": false,
"import/no-duplicates": false,
"import/no-named-as-default-member": false,
"import/no-named-as-default": false,
"jsx-a11y/interactive-supports-focus": false,
"jsx-a11y/click-events-have-key-events": false,
"jsx-a11y/no-static-element-interactions": false,
"jsx-a11y/no-noninteractive-element-interactions": false,
"react/jsx-filename-extension": false,
"react/jsx-one-expression-per-line": false,
"react/jsx-closing-bracket-location": false,
"react/prop-types": false,
"jsx-a11y/label-has-for": false,
"jsx-a11y/label-has-associated-control": false
},
"settings": {
"import/resolver": {
"alias": {
"extensions": [".ts", ".js"]
}
}
}
}