forked from cimplex-project/visualization-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
57 lines (57 loc) · 1.57 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
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"arrowFunctions": true,
"classes": true,
"defaultParams": true,
"destructuring": true,
"jsx": true,
"modules": true,
"spread": true,
"templateStrings": true,
"unicodeCodePointEscapes": true
},
"sourceType": "module"
},
"rules": {
"comma-dangle": "off",
"constructor-super": "warn",
"curly": "off",
"eqeqeq": "off",
"new-cap": "warn",
"new-parens": "warn",
"no-const-assign": "warn",
"no-dupe-args": "warn",
"no-dupe-keys": "warn",
"no-eq-null": "warn",
"no-floating-decimal": "warn",
"no-inline-comments": "warn",
"no-inner-declarations": "warn",
"no-invalid-this": "off",
"no-octal": "warn",
"no-shadow-restricted-names": "warn",
"no-shadow": "warn",
"no-this-before-super": "warn",
"no-undef": "off",
"no-unreachable": "warn",
"no-unused-vars": "off",
"no-use-before-define": "off",
"no-var": "warn",
"one-var-declaration-per-line": "warn",
"prefer-const": "off",
"prefer-template": "warn",
"Require-jsdoc": "off",
"semi": "warn",
"spaced-comment": "warn",
"strict": "warn",
"use-isnan": "warn",
"valid-jsdoc": "off",
"valid-typeof": "warn"
}
}