Newer
Older
{
"rulesDirectory": [
"node_modules/codelyzer"
],
"rules": {
"class-name": true,
"comment-format": [
"indent": [
true,
"spaces"
],
"label-position": true,
"max-line-length": [
true,
"static-before-instance",
"variables-before-functions"
],
"no-arg": true,
"no-console": [
true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": false,
"no-eval": true,
"no-inferrable-types": [true],
"no-unused-expression": true,
"no-var-keyword": true,
"no-unused-variable": true,
"object-literal-sort-keys": false,
"one-line": [
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"quotemark": [
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"variable-name": false,
"whitespace": [
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
],
"arrow-return-shorthand": [true],
"import-spacing": true,
"no-consecutive-blank-lines": [true],
"directive-selector": [true, "attribute", "smart", "camelCase"],
"component-selector": [false, "element", "smart", "kebab-case"],
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"no-input-rename": true,
"no-output-rename": true,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": false,
"component-class-suffix": true,
"directive-class-suffix": true
}
}