{
  "rules": {
    "one-variable-per-declaration": [
      true
    ],
    "no-consecutive-blank-lines": [
      true
    ],
    "no-require-imports": true,
    "member-access": [
      true,
      "check-accessor"
    ],
    "indent": [
      true,
      "spaces"
    ],
    "object-literal-sort-keys": false,
    "object-literal-shorthand": false,
    "typedef": [
      true,
      "parameter",
      "property-declaration"
    ],
    "max-line-length": [
      false
    ],
    "max-classes-per-file": [
      false
    ],
    "no-implicit-dependencies": false,
    "no-submodule-imports": false,
    "return-undefined": true,
    "prefer-readonly": true,
    "no-duplicate-imports": true,
    "unnecessary-constructor": true,
    "file-name-casing": [
      true,
      "camel-case"
    ],
    "interface-name": [
      true,
      "never-prefix"
    ],
    "arrow-return-shorthand": true,
    "variable-name": [
      true,
      "ban-keywords",
      "check-format"
    ],
    "no-parameter-reassignment": true,
    "readonly-keyword": true,
    "no-delete": true,
    "no-method-signature": true,
    "no-mixed-interface": true
  }
}