forked from adoptapanama/admin-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
81 lines (81 loc) · 2.17 KB
/
.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
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
{
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"no-debugger": 2,
"indent": [2, 2, { "SwitchCase": 1 }],
"strict": [2, "global"],
"camelcase": 2,
"comma-spacing": [2, { "before": false, "after": true }],
"consistent-return": 0,
"vars-on-top": 0,
"no-console": 0,
"no-constant-condition": 2,
"no-empty": 0,
"no-return-await": 2,
"require-await": 2,
"no-native-reassign": 0,
"no-underscore-dangle": 0,
"no-undef": 0,
"no-process-exit": 0,
"no-unused-expressions": 0,
"no-regex-spaces": 0,
"no-catch-shadow": 0,
"no-lonely-if": 2,
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"no-unused-vars": [1, { "vars": "all", "varsIgnorePattern": "^internals|lab$", "args": "none" }],
"linebreak-style": [2, "unix"],
"handle-callback-err": [2, "^(e|err|error)$"],
"array-bracket-spacing": 1,
"dot-notation": 0,
"eol-last": [2, "never"],
"no-trailing-spaces": 1,
"no-eq-null": 1,
"no-extend-native": 1,
"no-redeclare": 1,
"no-loop-func": 1,
"yoda": [1, "never"],
"sort-vars": 1,
"arrow-parens": [2, "always"],
"arrow-spacing": [2, { "before": true, "after": true }],
"quotes": [2, "single"],
"consistent-this": [2, "self"],
"new-parens": 2,
"no-array-constructor": 2,
"no-confusing-arrow": 2,
"no-new-object": 2,
"no-spaced-func": 2,
"no-mixed-spaces-and-tabs": 2,
"keyword-spacing": [2, { "before": true, "after": true }],
"semi": [2, "always"],
"semi-spacing": [2, { "before": false, "after": true }],
"space-infix-ops": 2,
"space-unary-ops": [1, { "words": true, "nonwords": false }],
"eqeqeq": 2,
"curly": [2, "all"],
"no-eval": 2,
"no-else-return": 2,
"no-return-assign": 2,
"no-new-wrappers": 2,
"comma-dangle": [2, "never"],
"no-sparse-arrays": 2,
"no-ex-assign": 2,
"no-var": 2,
"prefer-arrow-callback": 2,
"prefer-const": 2,
"space-before-function-paren": [
2,
{
"anonymous": "never",
"named": "never",
"asyncArrow": "ignore"
}
],
"no-const-assign": 2
}
}