{
"extends": [
"tslint:recommended"
],
"rulesDirectory": [
"node_modules/codelyzer"
],
"rules": {
"trailing-comma": [
false,
{
"multiline": "always",
"singleline": "never"
}
],
"interface-name": [
true,
"never-prefix"
],
"component-class-suffix": true,
"directive-class-suffix": true,
"invoke-injectable": true,
"no-access-missing-member": false,
"member-access": false,
"member-ordering": false,
"no-attribute-parameter-decorator": true,
"no-forward-ref": true,
"no-input-rename": true,
"no-output-rename": true,
"no-empty-interface": false,
"only-arrow-functions": false,
"pipe-naming": [
false
],
"templates-use-public": true,
"use-host-property-decorator": false,
"use-input-property-decorator": true,
"use-life-cycle-interface": true,
"use-output-property-decorator": true,
"use-pipe-transform-interface": true,
"import-blacklist": [
true
],
"no-console": [
true,
"time",
"timeEnd",
"trace"
],
"max-line-length": false,
"no-string-literal": false,
"no-use-before-declare": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [
true,
"single",
"avoid-escape"
],
"variable-name": [
true,
"allow-pascal-case",
"allow-trailing-underscore",
"allow-leading-underscore",
"allow-snake-case",
"ban-keywords",
"check-format"
],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type",
"check-typecast"
],
"import-destructuring-spacing": false,
"import-spacing": false,
"no-empty": false,
"max-classes-per-file": [true, 10]
}
}