-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
38 lines (38 loc) · 888 Bytes
/
.eslintrc.json
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
37
38
{
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true
},
"extends": ["airbnb", "prettier"],
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": ["react", "prettier"],
"rules": {
"prettier/prettier": "warn",
"import/no-extraneous-dependencies": "off",
"react/jsx-filename-extension": "off",
"react/prop-types": "off",
"jsx-a11y/anchor-is-valid": "off",
"react/jsx-closing-bracket-location": "off",
"react/no-danger": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/interactive-supports-focus": "off"
},
"globals": {
"graphql": true
},
"settings": {
"import/resolver": {
"node": {
"paths": ["src"]
}
}
}
}