forked from Twilio-org/phonebank
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
32 lines (32 loc) · 749 Bytes
/
.eslintrc.js
File metadata and controls
32 lines (32 loc) · 749 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
module.exports = {
"extends": ["airbnb", "plugin:react/recommended"],
"rules": {
"comma-dangle": ["error", "never"],
"camelcase": [0],
"react/prop-types": [0],
"react/prefer-stateless-function": [0],
"jest/no-disabled-tests": "warn",
"jest/no-focused-tests": "error",
"jest/no-identical-title": "error",
"jest/valid-expect": "error",
"no-confusing-arrow": ["error", {"allowParens": true}],
"no-plusplus": ["error", {"allowForLoopAfterthoughts": true}]
},
"plugins": [
"jest",
"react"
],
"env": {
"jest/globals": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"globals": {
"localStorage": true,
"document": true,
"FormData": true
}
};