-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc
44 lines (44 loc) · 1.11 KB
/
.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
38
39
40
41
42
43
44
{
"parser": "babel-eslint",
"extends": ["eslint:recommended", "angular"],
"globals": {
"_": true,
"__dirname": true,
"Blob": true,
"clearInterval": true,
"console": true,
"Crossword": true,
"CrosswordUtils": true,
"document": true,
"EventSource": true,
"FileReader",
"global": true,
"localStorage": true,
"location": true,
"Offline": true,
"module": true,
"moment": true,
"Papa": true,
"Promise": true,
"require": true,
"setInterval": true,
"setTimeout": true,
"window": true,
"XLSX": true
},
"rules": {
"angular/document-service": 0,
"angular/log": 1,
"angular/on-watch": 1,
"angular/no-private-call": 1,
"max-len": [2, 100, {
"ignoreComments": true,
"ignoreTrailingComments": true,
"ignoreUrls": true,
"ignoreTemplateLiterals": true,
"ignoreStrings": true
}],
"no-console": 0,
"no-invalid-this": 0
}
}