{
  "rules": {
    "adjacent-overload-signatures": true,
    "curly": true,
    "eofline": false,
    "align": [
      true,
      "parameters"
    ],
    "class-name": true,
    "no-angle-bracket-type-assertion": true,
    "max-file-line-count": [
      true,
      300
    ],
    "member-access": true,
    "no-trailing-whitespace": true,
    "no-bitwise": true,
    "no-debugger": true,
    "prefer-const": true,
    "no-empty-interface": true,
    "no-string-throw": true,
    "unified-signatures": true,
    "typeof-compare": true,
    "no-import-side-effect": true,
    "no-non-null-assertion": true,
    "no-unnecessary-callback-wrapper": true,
    "no-invalid-template-strings": true,
    "no-internal-module": true,
    "no-unnecessary-type-assertion": true,
    "no-irregular-whitespace": true,
    "encoding": true,
    "prefer-object-spread": true,
    "switch-final-break": true,
    "prefer-method-signature": true,
    "space-within-parens": false,
    "arrow-return-shorthand": [
      true,
      "multiline"
    ],
    "no-duplicate-variable": true,
    "no-inferrable-types": [
      true,
      "ignore-params"
    ],
    "no-var-keyword": true,
    "variable-name": [
      true,
      "ban-keywords",
      "check-format",
      "allow-leading-underscore",
      "allow-pascal-case"
    ],
    "no-empty": false,
    "no-shadowed-variable": true,
    "no-unused-expression": true,
    "triple-equals": true,
    "no-use-before-declare": true,
    "jsdoc-format": true,
    "one-line": [
      true,
      "check-else",
      "check-whitespace",
      "check-open-brace"
    ],
    "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"
      }
    ],
    "no-implicit-dependencies": true,
    "ban-comma-operator": true,
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-rest-spread",
      "check-operator",
      "check-separator",
      "check-type"
    ]
  }
}