1+ {
2+ "rules" : {
3+ "class-name" : true ,
4+ "curly" : true ,
5+ "eofline" : true ,
6+ "indent" : true ,
7+ "interface-name" : true ,
8+ "jsdoc-format" : true ,
9+ "max-line-length" : [false , 140 ],
10+ "no-consecutive-blank-lines" : true ,
11+ "no-construct" : true ,
12+ "no-debugger" : true ,
13+ "no-duplicate-key" : true ,
14+ "no-duplicate-variable" : true ,
15+ "no-shadowed-variable" : true ,
16+ "no-empty" : true ,
17+ "no-eval" : true ,
18+ "no-switch-case-fall-through" : true ,
19+ "no-trailing-whitespace" : true ,
20+ "no-unreachable" : true ,
21+ "no-unused-expression" : true ,
22+ "no-unused-variable" : true ,
23+ "no-use-before-declare" : true ,
24+ "no-var-keyword" : true ,
25+ "no-var-requires" : false ,
26+ "one-line" : [
27+ true ,
28+ " check-open-brace" ,
29+ " check-catch" ,
30+ " check-else"
31+ ],
32+ "quotemark" : [false , " double" ],
33+ "semicolon" : true ,
34+ "switch-default" : false ,
35+ "triple-equals" : [true , " allow-null-check" ],
36+ "use-strict" : true ,
37+ "variable-name" : [false , " allow-leading-underscore" ],
38+ "whitespace" : [
39+ false ,
40+ " check-branch" ,
41+ " check-decl" ,
42+ " check-operator" ,
43+ " check-module" ,
44+ " check-separator" ,
45+ " check-type" ,
46+ " check-typecast"
47+ ]
48+ }
49+ }
0 commit comments