|
| 1 | +{ |
| 2 | + "extends": "tslint:recommended", |
| 3 | + "rulesDirectory": ["codelyzer"], |
| 4 | + "rules": { |
| 5 | + "array-type": false, |
| 6 | + "arrow-parens": false, |
| 7 | + "curly": [true, "as-needed"], |
| 8 | + "deprecation": { |
| 9 | + "severity": "warn" |
| 10 | + }, |
| 11 | + "import-blacklist": [true, "rxjs/Rx"], |
| 12 | + "interface-name": false, |
| 13 | + "max-classes-per-file": false, |
| 14 | + "max-line-length": [true, 140], |
| 15 | + "member-access": false, |
| 16 | + "member-ordering": [ |
| 17 | + true, |
| 18 | + { |
| 19 | + "order": ["static-field", "instance-field", "static-method", "instance-method"] |
| 20 | + } |
| 21 | + ], |
| 22 | + "no-consecutive-blank-lines": false, |
| 23 | + "no-console": [true, "debug", "info", "time", "timeEnd", "trace"], |
| 24 | + "no-empty": false, |
| 25 | + "no-inferrable-types": [true, "ignore-params"], |
| 26 | + "no-non-null-assertion": true, |
| 27 | + "no-redundant-jsdoc": true, |
| 28 | + "no-string-literal": false, |
| 29 | + "no-switch-case-fall-through": true, |
| 30 | + "no-use-before-declare": true, |
| 31 | + "no-var-requires": false, |
| 32 | + "object-literal-key-quotes": [true, "as-needed"], |
| 33 | + "object-literal-sort-keys": false, |
| 34 | + "only-arrow-functions": false, |
| 35 | + "ordered-imports": false, |
| 36 | + "quotemark": [true, "single"], |
| 37 | + "trailing-comma": false, |
| 38 | + "no-output-on-prefix": true, |
| 39 | + "use-input-property-decorator": true, |
| 40 | + "use-output-property-decorator": true, |
| 41 | + "use-host-property-decorator": true, |
| 42 | + "no-input-rename": true, |
| 43 | + "no-output-rename": true, |
| 44 | + "use-life-cycle-interface": true, |
| 45 | + "use-pipe-transform-interface": true, |
| 46 | + "component-class-suffix": true, |
| 47 | + "directive-class-suffix": true, |
| 48 | + "variable-name": [ |
| 49 | + true, |
| 50 | + "ban-keywords", |
| 51 | + "check-format", |
| 52 | + "allow-leading-underscore", |
| 53 | + "require-const-for-all-caps" |
| 54 | + ] |
| 55 | + } |
| 56 | +} |
0 commit comments