-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.eslintrc
More file actions
34 lines (34 loc) · 742 Bytes
/
.eslintrc
File metadata and controls
34 lines (34 loc) · 742 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
{
"extends": "eslint-config-airbnb",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true,
"jsx": true
}
},
"env": {
"browser": true,
"jest": true,
"node": true
},
"rules": {
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"no-unused-expressions": "off",
"eol-last": "off",
"comma-dangle": "off",
"no-nested-ternary": "off",
"react/jsx-filename-extension": "off",
"react/forbid-prop-types": "off",
"react/no-unused-prop-types": "off",
"no-underscore-dangle": "off",
"react/prop-types": "off"
},
"plugins": [
"react"
],
"parser": "babel-eslint"
}