{
  "plugins": ["typescript"],
  "options": {
    "typeAware": true
  },
  "rules": {
    "no-undef": "off",
    "class-methods-use-this": "off",
    "default-param-last": "off",
    "init-declarations": "off",
    "no-array-constructor": "off",
    "no-dupe-class-members": "off",
    "no-empty-function": "off",
    "no-implied-eval": "off",
    "no-loop-func": "off",
    "no-loss-of-precision": "error",
    "no-magic-numbers": "off",
    "no-redeclare": "off",
    "no-restricted-imports": "off",
    "no-shadow": "off",
    "no-throw-literal": "off",
    "no-unused-expressions": [
      "error",
      {
        "allowShortCircuit": true,
        "allowTernary": true,
        "allowTaggedTemplates": true
      }
    ],
    "no-unused-vars": "error",
    "no-use-before-define": "off",
    "no-useless-constructor": "error",
    "require-await": "off",
    "typescript/adjacent-overload-signatures": "error",
    "typescript/array-type": "off",
    "typescript/await-thenable": "off",
    "typescript/ban-ts-comment": "off",
    "typescript/ban-tslint-comment": "off",
    "typescript/ban-types": "off",
    "typescript/class-literal-property-style": ["error", "fields"],
    "typescript/consistent-generic-constructors": "off",
    "typescript/consistent-indexed-object-style": "off",
    "typescript/consistent-type-assertions": [
      "error",
      {
        "assertionStyle": "as",
        "objectLiteralTypeAssertions": "never"
      }
    ],
    "typescript/consistent-type-definitions": ["error", "interface"],
    "typescript/consistent-type-exports": "off",
    "typescript/consistent-type-imports": "error",
    "typescript/dot-notation": "off",
    "typescript/explicit-function-return-type": "off",
    "typescript/explicit-member-accessibility": "error",
    "typescript/explicit-module-boundary-types": "off",
    "typescript/method-signature-style": "error",
    "typescript/no-base-to-string": "off",
    "typescript/no-confusing-non-null-assertion": "off",
    "typescript/no-confusing-void-expression": "off",
    "typescript/no-duplicate-enum-values": "error",
    "typescript/no-duplicate-type-constituents": "off",
    "typescript/no-dynamic-delete": "off",
    "typescript/no-empty-interface": "error",
    "typescript/no-explicit-any": "off",
    "typescript/no-extra-non-null-assertion": "off",
    "typescript/no-extraneous-class": "off",
    "typescript/no-floating-promises": "off",
    "typescript/no-for-in-array": "off",
    "typescript/no-implied-eval": "off",
    "typescript/no-import-type-side-effects": "error",
    "typescript/no-inferrable-types": "error",
    "typescript/no-invalid-void-type": "error",
    "typescript/no-meaningless-void-operator": "off",
    "typescript/no-misused-new": "off",
    "typescript/no-misused-promises": "off",
    "typescript/no-mixed-enums": "off",
    "typescript/no-namespace": [
      "error",
      {
        "allowDeclarations": true,
        "allowDefinitionFiles": true
      }
    ],
    "typescript/no-non-null-asserted-nullish-coalescing": "error",
    "typescript/no-non-null-asserted-optional-chain": "error",
    "typescript/no-non-null-assertion": "off",
    "typescript/no-redundant-type-constituents": "off",
    "typescript/no-require-imports": "error",
    "typescript/no-this-alias": [
      "error",
      {
        "allowDestructuring": true
      }
    ],
    "typescript/no-unnecessary-boolean-literal-compare": "off",
    "typescript/no-unnecessary-condition": "off",
    "typescript/no-unnecessary-qualifier": "off",
    "typescript/no-unnecessary-type-arguments": "off",
    "typescript/no-unnecessary-type-assertion": "off",
    "typescript/no-unnecessary-type-constraint": "error",
    "typescript/no-unsafe-argument": "off",
    "typescript/no-unsafe-assignment": "off",
    "typescript/no-unsafe-call": "off",
    "typescript/no-unsafe-declaration-merging": "off",
    "typescript/no-unsafe-enum-comparison": "off",
    "typescript/no-unsafe-member-access": "off",
    "typescript/no-unsafe-return": "off",
    "typescript/no-useless-empty-export": "off",
    "typescript/no-var-requires": "off",
    "typescript/non-nullable-type-assertion-style": "off",
    "typescript/parameter-properties": "off",
    "typescript/prefer-as-const": "off",
    "typescript/prefer-enum-initializers": "off",
    "typescript/prefer-for-of": "error",
    "typescript/prefer-function-type": "error",
    "typescript/prefer-includes": "off",
    "typescript/prefer-literal-enum-member": "off",
    "typescript/prefer-namespace-keyword": "error",
    "typescript/prefer-nullish-coalescing": "off",
    "typescript/prefer-optional-chain": "off",
    "typescript/prefer-readonly": "off",
    "typescript/prefer-readonly-parameter-types": "off",
    "typescript/prefer-reduce-type-parameter": "off",
    "typescript/prefer-regexp-exec": "off",
    "typescript/prefer-return-this-type": "off",
    "typescript/prefer-string-starts-ends-with": "off",
    "typescript/prefer-ts-expect-error": "off",
    "typescript/promise-function-async": "off",
    "typescript/require-array-sort-compare": "off",
    "typescript/require-await": "off",
    "typescript/restrict-plus-operands": "off",
    "typescript/restrict-template-expressions": "off",
    "typescript/return-await": "off",
    "typescript/strict-boolean-expressions": "off",
    "typescript/switch-exhaustiveness-check": "off",
    "typescript/triple-slash-reference": [
      "error",
      {
        "path": "never",
        "types": "always",
        "lib": "always"
      }
    ],
    "typescript/unbound-method": "off",
    "typescript/unified-signatures": "error"
  }
}
