-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
executable file
·32 lines (31 loc) · 821 Bytes
/
Copy path.eslintrc
File metadata and controls
executable file
·32 lines (31 loc) · 821 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"plugins": [
"react",
"jsx-a11y",
"import"
],
"rules": {
"indent": ["error", 2],
"max-len": ["error", 150],
"react/jsx-indent": ["error", 2],
"react/jsx-filename-extension": ["error", { "extensions": [".js", ".jsx"] }],
"react/jsx-indent-props": ["error", 2],
"comma-dangle": ["error", "never"],
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"no-console": 0,
"import/extensions": 0,
"linebreak-style": 0,
"react/forbid-prop-types": 0,
"jsx-a11y/no-static-element-interactions": 0,
"func-names": 0,
"import/no-unresolved": 0
},
"env": {
"browser": true,
"es6": true,
"node": true
}
}