Changeset View
Changeset View
Standalone View
Standalone View
tslint.json
Show All 18 Lines | "rules": { | ||||
], | ], | ||||
"interface-over-type-literal": true, | "interface-over-type-literal": true, | ||||
"label-position": true, | "label-position": true, | ||||
"max-line-length": [ | "max-line-length": [ | ||||
true, | true, | ||||
140 | 140 | ||||
], | ], | ||||
"member-access": false, | "member-access": false, | ||||
"member-ordering": [ | |||||
true, | |||||
"static-before-instance", | |||||
"variables-before-functions" | |||||
], | |||||
"no-arg": true, | "no-arg": true, | ||||
"no-bitwise": true, | "no-bitwise": true, | ||||
"no-console": [ | "no-console": [ | ||||
true, | true, | ||||
"debug", | "debug", | ||||
"info", | "info", | ||||
"time", | "time", | ||||
"timeEnd", | "timeEnd", | ||||
Show All 24 Lines | "rules": { | ||||
], | ], | ||||
"prefer-const": true, | "prefer-const": true, | ||||
"quotemark": [ | "quotemark": [ | ||||
true, | true, | ||||
"single" | "single" | ||||
], | ], | ||||
"radix": true, | "radix": true, | ||||
"semicolon": [ | "semicolon": [ | ||||
true, | |||||
"always" | "always" | ||||
], | ], | ||||
"triple-equals": [ | "triple-equals": [ | ||||
true, | true, | ||||
"allow-null-check" | "allow-null-check" | ||||
], | ], | ||||
"typedef-whitespace": [ | "typedef-whitespace": [ | ||||
true, | true, | ||||
{ | { | ||||
"call-signature": "nospace", | "call-signature": "nospace", | ||||
"index-signature": "nospace", | "index-signature": "nospace", | ||||
"parameter": "nospace", | "parameter": "nospace", | ||||
"property-declaration": "nospace", | "property-declaration": "nospace", | ||||
"variable-declaration": "nospace" | "variable-declaration": "nospace" | ||||
} | } | ||||
], | ], | ||||
"typeof-compare": true, | |||||
"unified-signatures": true, | "unified-signatures": true, | ||||
"variable-name": false, | "variable-name": false, | ||||
"whitespace": [ | "whitespace": [ | ||||
true, | true, | ||||
"check-branch", | "check-branch", | ||||
"check-decl", | "check-decl", | ||||
"check-operator", | "check-operator", | ||||
"check-separator", | "check-separator", | ||||
"check-type" | "check-type" | ||||
], | ], | ||||
"directive-selector": [true, "attribute", "app", "camelCase"], | "directive-selector": [true, "attribute", "app", "camelCase"], | ||||
"component-selector": [true, "element", "app", "kebab-case"], | "component-selector": [true, "element", "app", "kebab-case"], | ||||
"use-input-property-decorator": true, | "use-input-property-decorator": true, | ||||
"use-output-property-decorator": true, | "use-output-property-decorator": true, | ||||
"use-host-property-decorator": true, | "use-host-property-decorator": true, | ||||
"no-input-rename": true, | "no-input-rename": true, | ||||
"no-output-rename": true, | "no-output-rename": true, | ||||
"use-life-cycle-interface": true, | "use-life-cycle-interface": true, | ||||
"use-pipe-transform-interface": true, | "use-pipe-transform-interface": true, | ||||
"component-class-suffix": true, | "component-class-suffix": true, | ||||
"directive-class-suffix": true, | "directive-class-suffix": true, | ||||
"no-access-missing-member": false, | "no-access-missing-member": false | ||||
"templates-use-public": true, | |||||
"invoke-injectable": true | |||||
} | } | ||||
} | } |