This repository has been archived by the owner on Jan 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc
126 lines (122 loc) · 3.36 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// eslint.org
{
"env": {
"node": true,
"mocha": true
},
"globals": {
"webpack": true
},
"rules": {
// Possible errors
"comma-dangle": [1, "never"],
"no-cond-assign": [2, "always"],
"no-constant-condition": 1,
"no-dupe-args": 1,
"no-dupe-keys": 1,
"no-duplicate-case": 1,
"no-empty": 1,
"no-ex-assign": 1,
"no-extra-boolean-cast": 1,
"no-extra-parens": 1,
"no-extra-semi": 1,
"no-func-assign": 1,
"no-inner-declarations": 1,
"no-invalid-regexp": 1,
"no-unexpected-multiline": 1,
"no-sparse-arrays": 1,
"use-isnan": 1,
"valid-typeof": 2,
// Best practices
"accessor-pairs": 1,
"block-scoped-var": 1,
"curly": 1,
"default-case": 1,
"dot-notation": 1,
"dot-location": [1, "property"],
"eqeqeq": [1, "smart"],
"guard-for-in": 1,
"max-depth": [1, 3],
"no-else-return": 1,
"no-eq-null": 1,
"no-extend-native": 1,
"no-fallthrough": 1,
"no-floating-decimal": 1,
"no-extra-bind": 1,
"no-lone-blocks": 1,
"no-loop-func": 1,
"no-multi-spaces": 1,
"no-multi-str": 1,
"no-native-reassign": 1,
"no-new-func": 1,
"no-new-wrappers": 1,
"no-new": 1,
"no-param-reassign": 1,
"no-plusplus": 1,
"no-return-assign": 1,
"no-self-compare": 1,
"no-unused-expressions": 1,
"vars-on-top": 1,
"wrap-iife": [1, "outside"],
"yoda": [1, "never", { "exceptRange": true }],
"strict": [2, "global"],
// Variable rules
"no-catch-shadow": 1,
"no-delete-var": 1,
"no-shadow-restricted-names": 1,
"no-shadow": 1,
"no-undef-init": 1,
"no-undef": 1,
"no-undefined": 1,
"no-unused-vars": 1,
"no-use-before-define": [2, "nofunc"],
// Nodejs rules
"handle-callback-err": 1,
"no-mixed-requires": 1,
"no-new-require": 1,
"no-path-concat": 1,
// Style rules
"array-bracket-spacing": [1, "never"],
"brace-style": [1, "1tbs", { "allowSingleLine": false }],
"camelcase": [1, {"properties": "always"}],
"comma-spacing": [1, {"before": false, "after": true}],
"comma-style": [1, "last"],
"computed-property-spacing": [1, "never"],
"consistent-this": [1, "self"],
"eol-last": 1,
"func-names": 0,
"func-style": [1, "declaration"],
"indent": [1, 2],
"key-spacing": [1, {"beforeColon": false, "afterColon": true}],
"linebreak-style": [1, "unix"],
"max-nested-callbacks": [1, 3],
"new-cap": 1,
"new-parens": 1,
"newline-after-var": 1,
"no-array-constructor": 1,
"no-lonely-if": 1,
"no-multiple-empty-lines": [1, {"max": 1}],
"no-nested-ternary": 1,
"no-new-object": 1,
"no-spaced-func": 1,
"no-trailing-spaces": 1,
"no-unneeded-ternary": 1,
"object-curly-spacing": [1, "never"],
"one-var": [1, "never"],
"operator-assignment": [1, "always"],
"operator-linebreak": [1, "after"],
"padded-blocks": [1, "never"],
"quote-props": [1, "as-needed"],
"quotes": [1, "single", "avoid-escape"],
"semi-spacing": [1, {"before": false, "after": true}],
"semi": [1, "always"],
"space-after-keywords": [1, "always"],
"space-before-blocks": [1, "always"],
"space-before-function-paren": [1, "never"],
"space-in-parens": [1, "never"],
"space-infix-ops": 1,
"space-return-throw-case": 1,
"space-unary-ops": 1,
"spaced-comment": [1, "always"],
}
}