-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc
37 lines (37 loc) · 817 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
{
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "script"
},
"env": {
"browser": false,
"es2020": true,
"node": true
},
"plugins": [
"prettier"
],
"rules": {
"curly": 2,
"no-underscore-dangle": 0,
"no-constant-condition": 2,
"no-dupe-args": 2,
"no-debugger": 2,
"no-duplicate-case": 2,
"no-empty": 2,
"no-empty-character-class": 2,
"no-eval": 2,
"no-unused-vars": 2,
"no-lonely-if": 2,
"quotes": [0, true, "single"],
"strict": [2, "global"],
"prettier/prettier": [2, {
"singleQuote": true,
"tabWidth": 4
}]
},
"globals": {
"require": false,
"module": false
}
}