{ "rulesDirectory": [ "node_modules/codelyzer" ], "rules": { "directive-selector": [ true, "attribute", "knk", "camelCase" ], "component-selector": [ true, "element", "knk", "kebab-case" ], "use-input-property-decorator": true, "use-output-property-decorator": true, "use-host-property-decorator": true, "no-attribute-parameter-decorator": true, "no-input-rename": true, "no-output-rename": true, "no-forward-ref": true, "use-life-cycle-interface": true, "use-pipe-transform-interface": true, "pipe-naming": [ true, "camelCase", "ldi" ], "component-class-suffix": true, "directive-class-suffix": true, "import-destructuring-spacing": true, "member-ordering": [ true, "public-before-private", "static-before-instance", "variables-before-functions" ], "no-any": true, "no-reference": true, "no-var-requires": true, "typedef": [ true, "call-signature", "parameter", "property-declaration", "variable-declaration" ], "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" } ], "curly": true, "label-position": true, "no-arg": true, "no-bitwise": true, "no-conditional-assignment": true, "no-console": [ true, "debug", "info", "time", "timeEnd", "trace", "error" ], "no-construct": true, "no-debugger": true, "no-empty": true, "no-eval": true, "no-shadowed-variable": true, "no-string-literal": true, "no-switch-case-fall-through": true, "no-unsafe-finally": true, "no-unused-expression": true, "no-var-keyword": true, "radix": true, "switch-default": true, "triple-equals": [ true, "allow-null-check" ], "use-isnan": true, "eofline": true, "indent": [ true, "spaces" ], "linebreak-style": [ false, "CRLF", "LF" ], "max-line-length": [ true, 500 ], "no-default-export": true, "no-trailing-whitespace": true, "object-literal-sort-keys": false, "trailing-comma": [ true, { "multiline": "never", "singleline": "never" } ], "class-name": true, "comment-format": [ true, "check-space" ], "interface-name": [ true, "always-prefix" ], "jsdoc-format": true, "new-parens": true, "no-consecutive-blank-lines": [true], "object-literal-key-quotes": [ true, "as-needed" ], "object-literal-shorthand": true, "one-line": [ true, "check-catch", "check-finally", "check-else", "check-open-brace", "check-whitespace" ], "ordered-imports": [true], "quotemark": [ true, "single", "avoid-escape" ], "semicolon": [ true, "always" ], "variable-name": [ true, "ban-keywords", "check-format", "allow-leading-underscore" ], "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-type" ] } }