1+ {
2+ "env": {
3+ "browser": false,
4+ "node": true,
5+ "amd": false,
6+ "mocha": true,
7+ "jasmine": false,
8+ "es6": true
9+ },
10+
11+ "rules": {
12+ "comma-dangle": [2, "never"],
13+ "no-cond-assign": 2,
14+ "no-console": 0,
15+ "no-constant-condition": 2,
16+ "no-control-regex": 2,
17+ "no-debugger": 2,
18+ "no-dupe-args": 2,
19+ "no-dupe-keys": 2,
20+ "no-duplicate-case": 2,
21+ "no-empty-character-class": 2,
22+ "no-empty": 2,
23+ "no-ex-assign": 2,
24+ "no-extra-boolean-cast": 2,
25+ "no-extra-parens": 0,
26+ "no-extra-semi": 2,
27+ "no-func-assign": 2,
28+ "no-inner-declarations": [2, "functions"],
29+ "no-invalid-regexp": 2,
30+ "no-irregular-whitespace": 2,
31+ "no-negated-in-lhs": 2,
32+ "no-obj-calls": 2,
33+ "no-regex-spaces": 2,
34+ "no-sparse-arrays": 2,
35+ "no-unreachable": 2,
36+ "use-isnan": 2,
37+ "valid-jsdoc": 0,
38+ "valid-typeof": 2,
39+ "no-unexpected-multiline": 2,
40+
41+ "accessor-pairs": 0,
42+ "block-scoped-var": 2,
43+ "complexity": [0, 5],
44+ "consistent-return": 2,
45+ "curly": [2, "all"],
46+ "default-case": 2,
47+ "dot-notation": 2,
48+ "eqeqeq": 2,
49+ "guard-for-in": 2,
50+ "no-alert": 2,
51+ "no-caller": 2,
52+ "no-div-regex": 2,
53+ "no-else-return": 2,
54+ "no-eq-null": 2,
55+ "no-eval": 2,
56+ "no-extend-native": 2,
57+ "no-extra-bind": 2,
58+ "no-fallthrough": 2,
59+ "no-floating-decimal": 2,
60+ "no-implicit-coercion": 0,
61+ "no-implied-eval": 2,
62+ "no-invalid-this": 2,
63+ "no-iterator": 2,
64+ "no-labels": 2,
65+ "no-lone-blocks": 2,
66+ "no-loop-func": 2,
67+ "no-multi-spaces": 2,
68+ "no-multi-str": 2,
69+ "no-native-reassign": 2,
70+ "no-new-func": 2,
71+ "no-new-wrappers": 2,
72+ "no-new": 2,
73+ "no-octal-escape": 2,
74+ "no-octal": 2,
75+ "no-param-reassign":[2, {"props": false}],
76+ "no-process-env": 2,
77+ "no-proto": 2,
78+ "no-redeclare": 2,
79+ "no-return-assign": 2,
80+ "no-script-url": 2,
81+ "no-self-compare": 2,
82+ "no-sequences": 2,
83+ "no-throw-literal": 2,
84+ "no-unused-expressions": 2,
85+ "no-useless-call": 2,
86+ "no-void": 0,
87+ "no-warning-comments": [0, { "terms": ["todo", "fixme", "xxx"], "location": "start" }],
88+ "no-with": 2,
89+ "radix": 0,
90+ "vars-on-top": 0,
91+ "wrap-iife": [2, "outside"],
92+ "yoda": [2, "never"],
93+
94+ "strict": [2, "global"],
95+
96+ "init-declarations": 0,
97+ "no-catch-shadow": 2,
98+ "no-delete-var": 2,
99+ "no-label-var": 2,
100+ "no-shadow-restricted-names": 2,
101+ "no-shadow": 2,
102+ "no-undef-init": 2,
103+ "no-undef": 2,
104+ "no-undefined": 2,
105+ "no-unused-vars": [2, {"vars": "all", "args": "after-used"}],
106+ "no-use-before-define": 2,
107+
108+ "callback-return": [2, ["callback", "cb", "next"]],
109+ "handle-callback-err": 2,
110+ "no-mixed-requires": [1, true],
111+ "no-new-require": 2,
112+ "no-path-concat": 2,
113+ "no-process-exit": 2,
114+ "no-restricted-modules": 0,
115+ "no-sync": 0,
116+
117+ "array-bracket-spacing": [2, "never"],
118+ "brace-style": [2, "1tbs"],
119+ "camelcase": [2, {"properties": "always"}],
120+ "comma-spacing": [2, {"before": false, "after": true}],
121+ "comma-style": [2, "last"],
122+ "computed-property-spacing": [2, "never"],
123+ "consistent-this": [2, "that"],
124+ "eol-last": 0,
125+ "func-names": 0,
126+ "func-style": [2, "expression"],
127+ "id-length": 0,
128+ "id-match": 0,
129+ "indent": [2, "tab", {"SwitchCase": 1, "VariableDeclarator": 1}],
130+ "key-spacing": [2, { "beforeColon": false, "afterColon": true }],
131+ "lines-around-comment": 0,
132+ "linebreak-style": 0,
133+ "max-nested-callbacks": [2, 5],
134+ "new-cap": 2,
135+ "new-parens": 2,
136+ "newline-after-var": [0, "always"],
137+ "no-array-constructor": 2,
138+ "no-continue": 0,
139+ "no-inline-comments": 0,
140+ "no-lonely-if": 2,
141+ "no-mixed-spaces-and-tabs": [2, "smart-tabs"],
142+ "no-multiple-empty-lines": [1, {"max": 2}],
143+ "no-nested-ternary": 2,
144+ "no-new-object": 2,
145+ "no-spaced-func": 2,
146+ "no-ternary": 0,
147+ "no-trailing-spaces": 2,
148+ "no-underscore-dangle": 0,
149+ "no-unneeded-ternary": 2,
150+ "object-curly-spacing": [0, "always", {
151+ "objectsInObjects": false,
152+ "arraysInObjects": false
153+ }],
154+ "one-var": 0,
155+ "operator-assignment": [2, "always"],
156+ "operator-linebreak": [2, "after"],
157+ "padded-blocks": [2, "never"],
158+ "quote-props": [2, "as-needed"],
159+ "quotes": [2, "single"],
160+ "semi-spacing": [2, {"before": false, "after": true}],
161+ "semi": [2, "always"],
162+ "sort-vars": 0,
163+ "space-after-keywords": [2, "always"],
164+ "space-before-blocks": [2, "always"],
165+ "space-in-parens": [2, "never"],
166+ "space-infix-ops": 2,
167+ "space-return-throw-case": 2,
168+ "space-unary-ops": [2, { "words": true, "nonwords": false }],
169+ "spaced-comment": 0,
170+ "wrap-regex": 2
171+ }
172+ }
0 commit comments