|
| 1 | +{ |
| 2 | + "rules": { |
| 3 | + "adjacent-overload-signatures": true, |
| 4 | + "no-internal-module": true, |
| 5 | + "no-magic-numbers": true, |
| 6 | + "no-reference": true, |
| 7 | + "prefer-for-of": true, |
| 8 | + "curly": true, |
| 9 | + "no-arg": true, |
| 10 | + "no-bitwise": true, |
| 11 | + "no-conditional-assignment": true, |
| 12 | + "no-debugger": true, |
| 13 | + "no-empty": true, |
| 14 | + "no-invalid-this": true, |
| 15 | + "no-null-keyword": true, |
| 16 | + "no-shadowed-variable": true, |
| 17 | + "no-var-keyword": true, |
| 18 | + "switch-default": true, |
| 19 | + "triple-equals": [ |
| 20 | + true, |
| 21 | + "allow-null-check" |
| 22 | + ], |
| 23 | + "indent": [ |
| 24 | + true, |
| 25 | + "spaces" |
| 26 | + ], |
| 27 | + "eofline": true, |
| 28 | + "no-duplicate-imports": true, |
| 29 | + "typeof-compare": true, |
| 30 | + "linebreak-style": [true, "LF"], |
| 31 | + "no-require-imports": true, |
| 32 | + "prefer-const": true, |
| 33 | + "interface-name": [true, "never-prefix"], |
| 34 | + "interface-over-type-literal": true , |
| 35 | + "jsdoc-format": true, |
| 36 | + "new-parens": true, |
| 37 | + "no-trailing-whitespace": true, |
| 38 | + "trailing-comma": [ |
| 39 | + true, {"multiline": "always", |
| 40 | + "singleline": "never"} |
| 41 | + ], |
| 42 | + "one-variable-per-declaration": [ |
| 43 | + true, |
| 44 | + "ignore-for-loop" |
| 45 | + ], |
| 46 | + "no-duplicate-variable": true, |
| 47 | + "class-name": true, |
| 48 | + "no-unnecessary-initializer": true, |
| 49 | + "comment-format": [ |
| 50 | + true, |
| 51 | + "check-space" |
| 52 | + ], |
| 53 | + "no-eval": true, |
| 54 | + "no-unsafe-finally": true, |
| 55 | + "one-line": [ |
| 56 | + true, |
| 57 | + "check-open-brace", |
| 58 | + "check-whitespace" |
| 59 | + ], |
| 60 | + "quotemark": [ |
| 61 | + true, |
| 62 | + "double" |
| 63 | + ], |
| 64 | + "semicolon": [ |
| 65 | + true, |
| 66 | + "always" |
| 67 | + ], |
| 68 | + "typedef-whitespace": [ |
| 69 | + true, |
| 70 | + { |
| 71 | + "call-signature": "nospace", |
| 72 | + "index-signature": "nospace", |
| 73 | + "parameter": "nospace", |
| 74 | + "property-declaration": "nospace", |
| 75 | + "variable-declaration": "nospace" |
| 76 | + } |
| 77 | + ], |
| 78 | + "variable-name": [ |
| 79 | + true, |
| 80 | + "ban-keywords" |
| 81 | + ], |
| 82 | + "whitespace": [ |
| 83 | + true, |
| 84 | + "check-branch", |
| 85 | + "check-decl", |
| 86 | + "check-operator", |
| 87 | + "check-separator", |
| 88 | + "check-type" |
| 89 | + ] |
| 90 | + } |
| 91 | +} |
0 commit comments