-
Notifications
You must be signed in to change notification settings - Fork 13
/
.eslintrc
37 lines (37 loc) · 919 Bytes
/
.eslintrc
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
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"jest": true
},
"rules": {
"no-alert": 0,
"no-loop-func": 0,
"no-param-reassign": 0,
"no-plusplus": "off",
"no-continue": "off",
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/mouse-events-have-key-events": "off",
"no-confusing-arrow": "off",
"implicit-arrow-linebreak": "off",
"import/prefer-default-export": "off",
"react/no-children-prop": "off"
},
"globals": {
"window": "readonly",
"localStorage": "readonly",
"document": "readonly",
"cy": "readonly",
"Cypress": "readonly"
},
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.dev.js"
}
}
}
}