forked from Mystifi/Kobold-Librarian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
83 lines (83 loc) · 2.02 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
{
"env": {
"es6": true,
"node": true
},
"globals": {
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"rules": {
"comma-dangle": [1, "always-multiline"],
"no-cond-assign": [2, "except-parens"],
"no-console": 0,
"no-constant-condition": 1,
"no-control-regex": 0,
"no-debugger": 2,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-empty": [2, { "allowEmptyCatch": true }],
"no-empty-character-class": 2,
"no-ex-assign": 2,
"no-extra-boolean-cast": 1,
"no-extra-parens": [1, "functions"],
"no-extra-semi": 2,
"no-func-assign": 2,
"no-inner-declarations": [1, "functions"],
"no-invalid-regexp": 2,
"no-irregular-whitespace": 1,
"no-negated-in-lhs": 1,
"no-obj-calls": 2,
"no-prototype-builtins": 0,
"no-regex-spaces": 1,
"no-sparse-arrays": 1,
"no-unexpected-multiline": 2,
"no-unreachable": 2,
"no-unsafe-finally": 1,
"use-isnan": 1,
"valid-jsdoc": 0,
"valid-typeof": 1,
"curly": [2, "multi-line", "consistent"],
"eqeqeq": [1, "smart"],
"no-case-declarations": 0,
"no-else-return": 1,
"no-fallthrough": 0,
"no-invalid-this": 0,
"no-multi-spaces": 2,
"no-octal": 1,
"no-redeclare": 2,
"no-self-assign": 1,
"no-with": 1,
"radix": [2, "as-needed"],
"yoda": 1,
"no-unused-vars": [1, { "args": "after-used" }],
"no-undef": [2, { "typeof": true }],
"no-use-before-define": [2, { "functions": false, "classes": false }],
"callback-return": 2,
"no-mixed-requires": 2,
"array-bracket-spacing": 2,
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"camelcase": 1,
"comma-spacing": 1,
"comma-style": 1,
"eol-last": 1,
"indent": [2, "tab"],
"linebreak-style": [2, "unix"],
"key-spacing": 1,
"no-lonely-if": 1,
"no-mixed-spaces-and-tabs": [2, "smart-tabs"],
"no-trailing-spaces": 1,
"no-whitespace-before-property": 2,
"object-curly-spacing": [2, "never"],
"padded-blocks": [2, "never"],
"quotes": 0,
"semi": 2,
"semi-spacing": 2,
"arrow-spacing": 2,
"no-const-assign": 2,
"no-var": 1
}
}