{ "extends": [ "tslint:recommended" ], "linterOptions": { "exclude": [ "src/environments/environment.ts" ] }, "rulesDirectory": [ "node_modules/codelyzer" ], "rules": { "callable-types": true, "class-name": true, "comment-format": [ true, "check-space" ], "curly": true, "eofline": true, "forin": true, "deprecation": { "severity": "warning" }, "import-blacklist": [ true ], "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, { "order": [ "static-field", "instance-field", "static-method", "instance-method" ] } ], "no-access-missing-member": false, "no-arg": true, "no-attribute-decorator": true, "no-bitwise": true, "no-console": [ true, "time", "timeEnd", "trace" ], "no-construct": true, "no-debugger": true, "no-duplicate-variable": true, "no-empty": true, "no-empty-interface": false, "no-eval": true, "no-forward-ref": 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-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-prefix": [ true, "ds" ], "quotemark": [ true, "single", "avoid-escape" ], "radix": true, "semicolon": [ true ], "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" }, { "call-signature": "onespace", "index-signature": "onespace", "parameter": "onespace", "property-declaration": "onespace", "variable-declaration": "onespace" } ], "unified-signatures": true, "variable-name": [ true, "allow-leading-underscore", "allow-pascal-case", "ban-keywords", "check-format" ], "whitespace": [ true, "check-branch", "check-operator" ], "component-class-suffix": true, "component-selector": [ true, "element", "ds", "kebab-case" ], "directive-class-suffix": true, "directive-selector": [ true, "attribute", "ds", "camelCase" ], "no-input-rename": true, "no-output-rename": true, "templates-use-public": false, "no-host-metadata-property": true, "no-inputs-metadata-property": true, "use-life-cycle-interface": false, "no-outputs-metadata-property": true, "use-pipe-transform-interface": true } }