-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.eslintrc.yml
More file actions
42 lines (40 loc) · 813 Bytes
/
Copy path.eslintrc.yml
File metadata and controls
42 lines (40 loc) · 813 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
42
{
"rules": {
"indent": 0,
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"comma-dangle": [
2,
"only-multiline"
],
},
"env": {
"node": true,
"browser": true
},
"globals": {
" (workaround for old eslint version) ": true,
"Uint8Array": true,
" (library names) ": true,
"$": true,
"jsPDF": true,
"Mousetrap": true,
"pdfform": true,
"JSZip": true,
"StackTrace": true,
" (global variables) ": true,
"state": true,
"bup_version": true
},
"extends": "eslint:recommended"
}