forked from partridgejiang/Kekule.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
47 lines (47 loc) · 944 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
38
39
40
41
42
43
44
45
46
47
{
"extends": ["eslint:recommended"],
"env": {
"es6": true,
"browser": true,
"node": true
},
"plugins": [],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": false
}
},
"rules": {
"no-extra-boolean-cast": 0,
"no-mixed-spaces-and-tabs": 0,
"no-unused-vars": 0,
"no-extra-semi": 0,
"no-empty": 0,
"no-unreachable": 0,
"no-redeclare": 0,
"no-console": 0,
"no-constant-condition": 0,
"no-useless-escape": 0,
"no-global-assign": 0,
"no-control-regex": 0
},
"globals": {
"ActiveXObject": true,
"Kekule": true,
"Class": true,
"JsonUtility": true,
"XmlUtility": true,
"ClassEx": true,
"ObjectEx": true,
"DataType": true,
"ObjSerializerFactory": true,
"Prototype": true,
"WebShow": true,
"THREE": true,
"Hammer": true,
"Raphael": true,
"Template": true
}
}