-
Notifications
You must be signed in to change notification settings - Fork 146
/
.eslintrc.json
46 lines (46 loc) · 1.3 KB
/
.eslintrc.json
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
45
46
{
"env": {
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 3
},
"globals": {
"app": "readonly",
"alert": "readonly",
"confirm": "readonly",
"Folder": "readonly",
"File": "readonly",
"DocumentColorSpace": "readonly",
"IllustratorSaveOptions": "readonly",
"ZOrderMethod": "readonly",
"TextType": "readonly",
"Window": "readonly",
"BlendModes": "readonly",
"ElementPlacement": "readonly",
"PointType": "readonly",
"ExportType": "readonly",
"ExportOptionsPNG8": "readonly",
"ExportOptionsPNG24": "readonly",
"ExportOptionsJPEG": "readonly",
"ExportOptionsSVG": "readonly",
"SVGFontSubsetting": "readonly",
"SVGDocumentEncoding": "readonly",
"SVGDTDVersion": "readonly",
"FontBaselineOption": "readonly",
"SVGCSSPropertyLocation": "readonly",
"SaveOptions": "readonly",
"it": "readonly",
"describe": "readonly",
"$": "readonly"
},
"rules": {
"semi": ["error", "always"],
"no-control-regex": "off",
"no-empty": "off",
"no-useless-escape": "off",
"no-prototype-builtins": "off"
}
}