-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy path.eslintrc.json
More file actions
30 lines (30 loc) · 611 Bytes
/
.eslintrc.json
File metadata and controls
30 lines (30 loc) · 611 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
{
"extends": ["airbnb-base", "prettier"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"env": {
"node": true,
"browser": false
},
"rules": {
"import/prefer-default-export": 0,
"import/extensions": ["error", "never", { "js": "always" }],
"no-unused-vars": 0,
"consistent-return": 0,
"radix": 0,
"no-underscore-dangle": 0
},
"globals": {
"Promise": true,
"beforeAll": true,
"beforeEach": true,
"afterAll": true,
"afterEach": true,
"describe": true,
"it": true,
"expect": true,
"test": true
}
}