UNPKG

ngx-resource-core

Version:

Core of resource library - Forked and modified

152 lines (151 loc) 3.41 kB
{ "rules": { "class-name": true, "curly": true, "eofline": true, "max-line-length": [ true, 140 ], "member-ordering": [ true, { "order": [ "public-static-field", "protected-static-field", "private-static-field", "public-static-method", "protected-static-method", "private-static-method", "public-instance-field", "protected-instance-field", "private-instance-field", "public-constructor", "protected-constructor", "private-constructor", "public-instance-method", "protected-instance-method", "private-instance-method" ] } ], "no-arg": true, "no-construct": true, "one-line": [ true, "check-open-brace", "check-catch", "check-else", "check-whitespace" ], "trailing-comma": true, "triple-equals": true, "no-unused-variable": [ true ], "no-var-requires": true, "await-promise": true, "forin": true, "no-duplicate-super": true, "no-duplicate-variable": true, "no-empty": true, "no-eval": true, "no-floating-promises": false, "no-invalid-this": true, "no-misused-new": true, "no-string-throw": true, "no-switch-case-fall-through": true, "no-unbound-method": true, "no-unsafe-finally": true, "no-unused-expression": [ true, "allow-fast-null-checks" ], "no-use-before-declare": true, "no-var-keyword": true, "prefer-object-spread": true, "radix": true, "restrict-plus-operands": true, "typeof-compare": true, "use-default-type-parameter": true, "use-isnan": true, "cyclomatic-complexity": true, "deprecation": true, "indent": [ true, "spaces", 2 ], "max-classes-per-file": [ true, 1 ], "no-default-export": false, "no-duplicate-imports": true, "no-require-imports": true, "prefer-const": true, "align": [ true, "members" ], "array-type": [ true, "array" ], "arrow-parens": true, "arrow-return-shorthand": true, "binary-expression-operand-order": true, "encoding": true, "import-spacing": true, "interface-name": [ true, "always-prefix" ], "newline-before-return": true, "new-parens": true, "no-boolean-literal-compare": true, "no-irregular-whitespace": true, "no-reference-import": true, "no-trailing-whitespace": [ true, "ignore-comments" ], "one-variable-per-declaration": [ true, "ignore-for-loop" ], "ordered-imports": [ true, { "import-sources-order": "any", "named-imports-order": "case-insensitive" } ], "prefer-method-signature": true, "prefer-switch": true, "prefer-template": true, "quotemark": [ true, "single" ], "return-undefined": false, "semicolon": true, "switch-final-break": true, "variable-name": [ true, "ban-keywords", "check-format", "allow-leading-underscore" ], "whitespace": [ true, "check-branch", "check-operator", "check-module", "check-operator", "check-separator", "check-type", "check-preblock" ] } }