| 123456789101112131415161718192021222324252627282930313233 |
- {
- "extends": [
- "../../tslint.json"
- ],
- "rulesDirectory": [
- "./node_modules/codelyzer"
- ],
- "rules": {
- "deprecation": {
- "severity": "warn"
- },
- "import-blacklist": [
- true,
- "rxjs/Rx"
- ],
- "indent": [
- true,
- "spaces"
- ],
- "no-string-literal": false,
- "no-output-on-prefix": true,
- "use-input-property-decorator": true,
- "use-output-property-decorator": true,
- "use-host-property-decorator": true,
- "no-input-rename": false,
- "no-output-rename": true,
- "use-life-cycle-interface": true,
- "use-pipe-transform-interface": true,
- "component-class-suffix": true,
- "directive-class-suffix": true,
- "no-floating-promises": false
- }
- }
|