{
    "defaultSeverity": "error",
    "jsRules": true,
    "rules": {
      "max-line-length": [true, {
        "limit": 120,
        "ignore-pattern": "^import |^export {(.*?)}"
      }],
      "no-arg": true,
      "semicolon": [true, "always"],
      "adjacent-overload-signatures": true,
      "await-promise": true,
      "callable-types": true,
      "deprecation": true,
      "jsdoc-format": true,
      "no-angle-bracket-type-assertion": true,
      "no-duplicate-switch-case": true,
      "prefer-const": true,
      "prefer-function-over-method": false,
      "prefer-object-spread": true,
      "prefer-template": false,
      "prefer-readonly": true,
      "prefer-for-of": true,
      "prefer-switch": true,
      "no-unnecessary-qualifier": true,
      "object-literal-shorthand": true,
      "no-shadowed-variable": false,
      "no-unnecessary-type-assertion": true,
      "no-return-await": true,
      "no-floating-promises": true,
      "no-inferred-empty-object-type": true,
      "strict-type-predicates": false,
      "restrict-plus-operands": false,
      "no-duplicate-variable": true,
      "class-name": true,
      "comment-format": [true, "check-space"],
      "indent": [true, "spaces"],
      "no-eval": true,
      "no-internal-module": true,
      "no-trailing-whitespace": true,
      "no-unsafe-finally": true,
      "no-unused-variable": [false, { "ignore-pattern": "React" }],
      "no-var-keyword": true,
      "one-line": [true, "check-open-brace", "check-whitespace"],
      "triple-equals": [true, "allow-null-check"],
      "typedef-whitespace": [
        true,
        {
          "call-signature": "nospace",
          "index-signature": "nospace",
          "parameter": "nospace",
          "property-declaration": "nospace",
          "variable-declaration": "nospace"
        }
      ],
      "variable-name": [true, "ban-keywords"],
      "whitespace": [
        true,
        "check-branch",
        "check-decl",
        "check-operator",
        "check-separator",
        "check-type"
      ]
    }
  }
  