{
  "defaultSeverity": "error",
  "extends": ["tslint:recommended", "tslint-eslint-rules"],
  "rules": {
    "comment-format": false,
    "import-spacing": true,
    "indent": [true, "tabs", 4],
    "jsdoc-format": false,
    "max-classes-per-file": [false],
    "max-line-length": [false],
    "member-ordering": false,
    "import-blacklist": [true, "lodash"],
    "no-console": [false],
    "no-default-export": true,
    "no-empty-interface": false,
    "no-parameter-reassignment": true,
    "no-this-assignment": [
      true,
      { "allowed-names": ["^self$"], "allow-destructuring": true }
    ],
    "no-var-requires": false,
    "object-literal-key-quotes": [false],
    "object-literal-sort-keys": false,
    "one-variable-per-declaration": [false],
    "ordered-imports": false,
    "triple-equals": [true, "allow-null-check", "allow-undefined-check"],
    "variable-name": [true, "ban-keywords", "allow-leading-underscore"],
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-module",
      "check-separator",
      "check-rest-spread",
      "check-type",
      "check-typecast",
      "check-type-operator",
      "check-preblock"
    ]
  },
  "linterOptions": {
    "exclude": ["./node_modules/**/*", "*.d.ts"],
    "format": "stylish"
  }
}
