Newer
Older
"extends": [
"tslint:recommended"
],
"rulesDirectory": [
"node_modules/codelyzer"
],
"callable-types": true,
"class-name": true,
"comment-format": [
"check-space"
"curly": true,
"eofline": true,
"forin": true,
"import-blacklist": [
"rxjs"
"import-spacing": true,
"indent": [
true,
"spaces"
],
"interface-name": [
false,
"always-prefix"
],
"interface-over-type-literal": true,
"label-position": true,
"max-line-length": [
false
],
"member-access": false,
"member-ordering": [
true,
"static-before-instance",
"variables-before-functions"
],
"no-access-missing-member": false,
"no-arg": true,
"no-bitwise": true,
"no-console": [
true,
"time",
"timeEnd",
"trace"
],
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-inferrable-types": [
true,
"ignore-params"
],
"no-shadowed-variable": true,
"no-string-literal": true,
"no-string-throw": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-use-before-declare": false,
"no-var-keyword": true,
"no-var-requires": false,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"one-line": [
true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"ordered-imports": [
false
],
"prefer-const": true,
"pipe-naming": [
true,
"camelCase",
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
"quotemark": [
true,
"single",
"avoid-escape"
],
"radix": true,
"semicolon": [
"always"
],
"trailing-comma": [
false,
{
"multiline": "always",
"singleline": "never"
}
],
"triple-equals": [
true,
"allow-null-check"
],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"typeof-compare": true,
"unified-signatures": true,
"variable-name": [
true,
"allow-leading-underscore",
"allow-pascal-case",
"ban-keywords",
"check-format"
],
"whitespace": [
true,
"check-branch",
"check-operator"
],
"component-selector": [
true,
"element",
"ds",
"kebab-case"
],
"directive-selector": [
true,
"attribute",
"ds",
"camelCase"
],
"invoke-injectable": true,
"no-input-rename": true,
"no-output-rename": true,
"templates-use-public": false,
"use-host-property-decorator": true,
"use-input-property-decorator": true,
"use-life-cycle-interface": false,
"use-output-property-decorator": true,
"use-pipe-transform-interface": true