Permalink
Cannot retrieve contributors at this time
{ | |
"rulesDirectory": [ | |
"node_modules/codelyzer" | |
], | |
"rules": { | |
"class-name": true, | |
"comment-format": [ | |
true, | |
"check-space" | |
], | |
"curly": false, | |
"eofline": false, | |
"forin": false, | |
"indent": [ | |
true, | |
"spaces" | |
], | |
"label-position": false, | |
"max-line-length": [ | |
true, | |
440 | |
], | |
"member-access": false, | |
"member-ordering": [ | |
true, | |
"static-before-instance", | |
"variables-before-functions" | |
], | |
"no-console": [ | |
true, | |
"debug", | |
"info", | |
"time", | |
"timeEnd", | |
"trace" | |
], | |
"callable-types": true, | |
"import-blacklist": [true, "rxjs"], | |
"import-spacing": true, | |
"interface-over-type-literal": true, | |
"no-empty-interface": true, | |
"no-string-throw": true, | |
"prefer-const": true, | |
"typeof-compare": true, | |
"unified-signatures": true, | |
"no-construct": true, | |
"no-debugger": true, | |
"no-duplicate-variable": true, | |
"no-empty": false, | |
"no-eval": true, | |
"no-inferrable-types": true, | |
"no-shadowed-variable": false, | |
"no-string-literal": false, | |
"no-switch-case-fall-through": true, | |
"no-trailing-whitespace": false, | |
"no-unused-expression": true, | |
"no-use-before-declare": true, | |
"no-var-keyword": false, | |
"object-literal-sort-keys": false, | |
"one-line": [ | |
true, | |
"check-open-brace", | |
"check-catch", | |
"check-else" | |
], | |
"quotemark": [ | |
false, | |
"single" | |
], | |
"radix": false, | |
"semicolon": [ | |
"always" | |
], | |
"triple-equals": [ | |
false, | |
"allow-null-check" | |
], | |
"typedef-whitespace": [ | |
false, | |
{ | |
"call-signature": "nospace", | |
"index-signature": "nospace", | |
"parameter": "nospace", | |
"property-declaration": "nospace", | |
"variable-declaration": "nospace" | |
} | |
], | |
"variable-name": false, | |
"whitespace": [ | |
false, | |
"check-branch", | |
"check-decl", | |
"check-operator", | |
"check-separator", | |
"check-type" | |
], | |
"directive-selector": [true, "attribute", "app", "camelCase"], | |
"component-selector": [false, "element", "app", "kebab-case"], | |
"use-input-property-decorator": true, | |
"use-output-property-decorator": true, | |
"use-host-property-decorator": false, | |
"no-input-rename": true, | |
"no-output-rename": true, | |
"use-life-cycle-interface": true, | |
"use-pipe-transform-interface": true, | |
"component-class-suffix": false, | |
"directive-class-suffix": false, | |
"no-access-missing-member": true, | |
"templates-use-public": true, | |
"invoke-injectable": true | |
} | |
} |