-
Notifications
You must be signed in to change notification settings - Fork 22
/
.eslintrc.json
93 lines (93 loc) · 2.44 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"extends": "airbnb-base/legacy",
"env": {
"browser": true,
"node": true,
"amd": true,
"jquery": true,
"es6": true
},
"globals": {
"dojo": true,
"gtag": true,
"d3": true,
"clipboard": true,
"cookie": true,
"cytoscape": true,
"msa": true,
"MauveViewer": true,
"forester": true,
"BVBRCClient": true,
"Hotmap": true
},
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"semi": 0,
"no-else-return": 0,
"one-var-declaration-per-line": 0,
"comma-dangle": 0,
"_comment_reactivate_later": ["block-scoped-var", "no-restricted-globals", "no-redeclare",
"no-nested-ternary", "no-return-assign", "no-restricted-syntax", "no-multi-assign", "no-loop-func",
"array-callback-return", "no-use-before-define", "no-template-curly-in-string", "no-new", "no-cond-assign",
"no-dupe-keys",
"no-plusplus", "no-bitwise"],
"block-scoped-var": 0,
"no-restricted-globals": 0,
"no-redeclare": 0,
"no-nested-ternary": 0,
"no-return-assign": 0,
"no-restricted-syntax": 0,
"no-multi-assign": 0,
"no-loop-func": 0,
"array-callback-return": 0,
"no-use-before-define": 0,
"no-template-curly-in-string": 0,
"no-cond-assign": 0,
"no-dupe-keys": 0,
"no-new": 0,
"one-var": 0,
"eqeqeq": 0,
"camelcase": 0,
"no-plusplus": [1, {"allowForLoopAfterthoughts": true}],
"no-unused-vars": ["error", { "vars": "all", "args": "none", "ignoreRestSiblings": false }],
"no-plusplus": 0,
"no-lonely-if": 0,
"no-prototype-builtins": 0,
"no-bitwise": ["error", { "allow": ["~"] }],
"no-bitwise": 0,
"radix": [1, "as-needed"],
"global-require": 0,
"quote-props": 0,
"dot-notation": [0, {"allowKeywords": false}],
"no-multi-spaces": 0,
"consistent-return": 0,
"no-unused-expressions": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"func-names": 0,
"no-shadow": 0,
"guard-for-in": 0,
"space-in-parens": 0,
"key-spacing": 1,
"max-len": 0,
"padded-blocks": 0,
"no-console": 0,
"no-continue": 0,
"import/no-extraneous-dependencies": 0,
"import/newline-after-import": 0,
"no-mixed-operators": 0,
"no-undef": 1,
"prefer-template": 0,
"no-debugger": 0,
"no-var": 0,
"vars-on-top": 0,
"default-case": 0,
"new-cap": 0,
"brace-style": 0,
"no-alert": 0,
"no-dupe-args": 0,
"function-paren-newline": 0
}
}