{
  "defaultSeverity": "error",
  "extends": "tslint:recommended",
  "jsRules": {},
  "rules": {
    "max-line-length": false,
    "no-console": false,
    "no-default-export": true,
    "no-duplicate-imports": true,
    "no-empty-interface": false,
    "object-literal-sort-keys": false,
    "object-literal-key-quotes": false,
    "ordered-imports": [
      true,
      {
        "grouped-imports": true
      }
    ],
    "quotemark": [true, "single"],
    "typedef": [
      true,
      "call-signature",
      "parameter",
      "arrow-parameter",
      "property-declaration",
      "member-variable-declaration",
      "object-destructuring",
      "array-destructuring"
    ],
    "variable-name": [true, "allow-leading-underscore", "allow-pascal-case"],
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-module",
      "check-separator",
      "check-rest-spread",
      "check-type",
      "check-typecast",
      "check-type-operator",
      "check-preblock"
    ]
  },
  "rulesDirectory": []
}
