{ "rules": { "align": [ true, "parameters", "statements" ], "ban": [ true, [ "_", "forEach" ], [ "_", "each" ], [ "$", "each" ], [ "angular", "forEach" ] ], "class-name": true, "comment-format": [ true, "check-space", "check-lowercase" ], "curly": true, "eofline": true, "forin": true, "indent": [ true, "spaces" ], "interface-name": [ true, "always-prefix" ], "import-spacing": true, "jsdoc-format": true, "label-position": true, "max-line-length": false, "member-access": true, "member-ordering": [ true, { "order": "fields-first" } ], "new-parens": false, "no-angle-bracket-type-assertion": false, "no-any": false, "no-arg": true, "no-bitwise": true, "no-conditional-assignment": true, "no-consecutive-blank-lines": true, "no-console": [ true, "debug", "info", "time", "timeEnd", "trace" ], "no-construct": true, "no-debugger": true, "no-default-export": true, "no-duplicate-variable": true, "no-empty": false, "no-empty-interface": true, "no-eval": false, "no-inferrable-types": false, "no-internal-module": true, "no-invalid-this": true, "no-misused-new": true, "no-null-keyword": false, "no-parameter-properties": true, "no-reference": true, "no-reference-import": true, "no-require-imports": false, "no-shadowed-variable": true, "no-string-literal": true, "no-string-throw": true, "no-switch-case-fall-through": false, "no-trailing-whitespace": false, "no-unnecessary-callback-wrapper": true, "no-unused-expression": true, "no-use-before-declare": true, "no-var-keyword": true, "no-var-requires": false, "object-literal-sort-keys": false, "one-line": [ true, "check-open-brace", "check-catch", "check-else", "check-finally", "check-whitespace" ], "one-variable-per-declaration": false, "only-arrow-functions": [true, "allow-declarations"], "prefer-const": true, "prefer-template": true, "quotemark": false, "radix": true, "semicolon": [true, "always"], "space-before-function-paren": true, "switch-default": false, "trailing-comma": false, "triple-equals": [ true, "allow-null-check", "allow-undefined-check" ], "typedef": [ true, "call-signature", "parameter", "arrow-parameter", "property-declaration", "variable-declaration", "member-variable-declaration" ], "typedef-whitespace": [ true, { "call-signature": "nospace", "index-signature": "nospace", "parameter": "nospace", "property-declaration": "nospace", "variable-declaration": "nospace" }, { "call-signature": "space", "index-signature": "space", "parameter": "space", "property-declaration": "space", "variable-declaration": "space" } ], "typeof-compare": true, "unified-signatures": true, "use-isnan": true, "variable-name": false, "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type" ] } }