|
| 1 | +{ |
| 2 | + "rules": { |
| 3 | + "class-name": true, |
| 4 | + "comment-format": [true, "check-space"], |
| 5 | + "curly": true, |
| 6 | + "eofline": true, |
| 7 | + "forin": true, |
| 8 | + "indent": [true, "spaces"], |
| 9 | + "label-position": true, |
| 10 | + "label-undefined": true, |
| 11 | + "max-line-length": [true, 140], |
| 12 | + "member-ordering": [true, |
| 13 | + "public-before-private", |
| 14 | + "static-before-instance", |
| 15 | + "variables-before-functions" |
| 16 | + ], |
| 17 | + "no-arg": true, |
| 18 | + "no-bitwise": true, |
| 19 | + "no-console": [true, |
| 20 | + "debug", |
| 21 | + "info", |
| 22 | + "time", |
| 23 | + "timeEnd", |
| 24 | + "trace" |
| 25 | + ], |
| 26 | + "no-construct": true, |
| 27 | + "no-debugger": true, |
| 28 | + "no-duplicate-key": false, |
| 29 | + "no-duplicate-variable": true, |
| 30 | + "no-empty": true, |
| 31 | + "no-eval": true, |
| 32 | + "no-shadowed-variable": true, |
| 33 | + "no-string-literal": true, |
| 34 | + "no-switch-case-fall-through": true, |
| 35 | + "no-trailing-comma": true, |
| 36 | + "no-trailing-whitespace": true, |
| 37 | + "no-unused-expression": true, |
| 38 | + "no-unused-variable": true, |
| 39 | + "no-unreachable": true, |
| 40 | + "no-use-before-declare": true, |
| 41 | + "no-var-keyword": false, |
| 42 | + "one-line": [true, |
| 43 | + "check-open-brace", |
| 44 | + "check-catch", |
| 45 | + "check-else", |
| 46 | + "check-whitespace" |
| 47 | + ], |
| 48 | + "quotemark": [true, "single"], |
| 49 | + "radix": true, |
| 50 | + "semicolon": true, |
| 51 | + "sort-object-literal-keys": false, |
| 52 | + "triple-equals": [true, "allow-null-check"], |
| 53 | + "variable-name": false, |
| 54 | + "whitespace": [true, |
| 55 | + "check-branch", |
| 56 | + "check-decl", |
| 57 | + "check-operator", |
| 58 | + "check-separator", |
| 59 | + "check-type" |
| 60 | + ] |
| 61 | + } |
| 62 | +} |
0 commit comments