-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
41 lines (41 loc) · 806 Bytes
/
.eslintrc
File metadata and controls
41 lines (41 loc) · 806 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
33
34
35
36
37
38
39
40
41
{
"extends": [
"eslint:recommended"
],
"env": {
"browser": true,
"jquery": true,
"es6": true,
"node": true
},
"rules": {
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-trailing-spaces": "error",
"valid-jsdoc": "error",
"brace-style": "error",
"keyword-spacing": "error",
"space-before-function-paren": [
"error",
"never"
],
"no-console": 0
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2017
}
}