{
  "rules": {
    "align": true,
    "array-type": [true, "array"],
    "arrow-return-shorthand": true,
    "callable-types": true,
    "class-name": true,
    "comment-format": [true, "check-space"],
    "component-class-suffix": true,
    "curly": true,
    "cyclomatic-complexity": [true, 30],
    "deprecation": {"severity": "warn"},
    "directive-class-suffix": true,
    "encoding": true,
    "eofline": true,
    "file-name-casing": [true, "kebab-case"],
    "forin": true,
    "import-blacklist": [true, "rxjs/Rx"],
    "import-spacing": true,
    "indent": [true, "spaces", 2],
    "interface-name": [true, "never-prefix"],
    "interface-over-type-literal": true,
    "jsdoc-format": [true, "check-multiline-start"],
    "label-position": true,
    "linebreak-style": [false, "LF"],
    "max-classes-per-file": [true, 1, "exclude-class-expressions"],
    "max-file-line-count": [true, 300],
    "max-line-length": [true, 140],
    "member-access": true,
    "member-ordering": [true, {"order": ["static-field", "instance-field", "static-method", "instance-method"]}],
    "new-parens": true,
    "no-any": true,
    "no-arg": true,
    "no-bitwise": true,
    "no-boolean-literal-compare": true,
    "no-conditional-assignment": true,
    "no-consecutive-blank-lines": true,
    "no-construct": true,
    "no-debugger": true,
    "no-default-export": true,
    "no-duplicate-imports": true,
    "no-duplicate-super": true,
    "no-duplicate-switch-case": true,
    "no-duplicate-variable": true,
    "no-empty": false,
    "no-empty-interface": true,
    "no-eval": true,
    "no-for-in-array": true,
    "no-inferrable-types": true,
    "no-input-rename": true,
    "no-internal-module": true,
    "no-invalid-template-strings": true,
    "no-invalid-this": true,
    "no-irregular-whitespace": true,
    "no-mergeable-namespace": true,
    "no-misused-new": true,
    "no-non-null-assertion": true,
    "no-object-literal-type-assertion": false,
    "no-output-on-prefix": true,
    "no-output-rename": true,
    "no-parameter-reassignment": true,
    "no-redundant-jsdoc": true,
    "no-reference-import": true,
    "no-return-await": true,
    "no-shadowed-variable": true,
    "no-string-literal": false,
    "no-string-throw": true,
    "no-switch-case-fall-through": true,
    "no-this-assignment": true,
    "no-trailing-whitespace": true,
    "no-unnecessary-class": false,
    "no-unnecessary-initializer": true,
    "no-unnecessary-qualifier": true,
    "no-unsafe-finally": true,
    "no-use-before-declare": true,
    "no-var-keyword": true,
    "no-void-expression": true,
    "number-literal-format": true,
    "object-literal-key-quotes": [true, "as-needed"],
    "object-literal-sort-keys": true,
    "one-line": [true, "check-open-brace", "check-catch", "check-else", "check-whitespace" ],
    "one-variable-per-declaration": true,
    "ordered-imports": [true, {"grouped-imports": true, "named-imports-order": "lowercase-last"}],
    "prefer-conditional-expression": [true, "check-else-if"],
    "prefer-const": true,
    "prefer-for-of": true,
    "prefer-method-signature": true,
    "prefer-object-spread": true,
    "prefer-readonly": true,
    "prefer-template": [true, "allow-single-concat"],
    "prefer-while": true,
    "quotemark": [true, "single"],
    "radix": true,
    "semicolon": [true, "always"],
    "space-before-function-paren": [true, {"anonymous": "always", "named": "never", "asyncArrow": "always"}],
    "strict-type-predicates": true,
    "switch-final-break": true,
    "trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
    "triple-equals": [true, "allow-null-check"],
    "type-literal-delimiter": true,
    "typedef": [true, "call-signature"],
    "typedef-whitespace": [true, {"call-signature": "nospace", "index-signature": "nospace", "parameter": "nospace", "property-declaration": "nospace", "variable-declaration": "nospace"}],
    "unified-signatures": true,
    "use-default-type-parameter": true,
    "use-host-property-decorator": true,
    "use-input-property-decorator": true,
    "use-isnan": true,
    "use-life-cycle-interface": true,
    "use-output-property-decorator": true,
    "use-pipe-transform-interface": true,
    "variable-name": [true, "check-format", "allow-leading-underscore", "require-const-for-all-caps"],
    "whitespace": [true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type"]
  }
}