UNPKG

1.63 kBJSONView Raw
1{
2 "rules": {
3 "class-name": true,
4 "curly": true,
5 "eofline": false,
6 "forin": true,
7 "indent": false,
8 "label-position": true,
9 "max-line-length": [
10 true,
11 150
12 ],
13 "no-arg": true,
14 "no-bitwise": true,
15 "no-console": false,
16 "no-construct": true,
17 "no-constructor-vars": false,
18 "no-debugger": true,
19 "no-duplicate-variable": true,
20 "no-empty": true,
21 "no-eval": true,
22 "no-string-literal": true,
23 "no-switch-case-fall-through": true,
24 "no-trailing-whitespace": true,
25 "no-unused-expression": true,
26 "no-unused-variable": false,
27 "no-use-before-declare": true,
28 "no-var-requires": false,
29 "one-line": [
30 true,
31 "check-open-brace",
32 "check-catch",
33 "check-else",
34 "check-whitespace"
35 ],
36 "semicolon": false,
37 "triple-equals": [
38 true,
39 "allow-null-check"
40 ],
41 "typedef": [
42 true,
43 "callSignature",
44 "indexSignature",
45 "parameter",
46 "propertySignature",
47 "variableDeclarator",
48 "memberVariableDeclarator"
49 ],
50 "use-strict": false,
51 "variable-name": [
52 true,
53 "allow-leading-underscore"
54 ],
55 "whitespace": [
56 true,
57 "check-branch",
58 "check-decl",
59 "check-operator",
60 "check-separator",
61 "check-type"
62 ]
63 }
64}
\No newline at end of file