{
  "defaultSeverity": "error",
  "extends": [
    "tslint:latest",
    "tslint-react"
  ],
  "jsRules": {},
  "rules": {
    "no-any": false,
    "variable-name": false,
    "no-default-export": false,
    "semicolon": [true, "always"],
    "quotemark": [true, "single"],
    "missing-jsdoc": false,
    "max-line-length": [true, 120],
    "indent": [true, "spaces", 2],
    "typedef": false,
    "interface-name": false,
    "interface-over-type-literal": false,
    "ordered-imports": false,
    "member-ordering": false,
    "object-literal-key-quotes": false,
    "object-literal-sort-keys": false,
    "no-unsafe-any": false,
    "no-empty-interface": false,
    "no-implicit-dependencies": false,
    "no-use-before-declare": true,
    "no-var-keyword": true,
    "no-submodule-imports": false,
    "no-duplicate-variable": true,
    "no-eval": true,
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-module",
      "check-separator",
      "check-type",
      "check-rest-spread",
      "check-type",
      "check-typecast",
      "check-type-operator"
    ],

    "jsx-alignment": [true, "always"],
    "jsx-curly-spacing": [true, "never"],
    "jsx-self-close": true,
    "jsx-space-before-trailing-slash": true,
    "jsx-wrap-multiline": true,
    "jsx-no-string-ref": true,
    "jsx-no-bind": true,
    "jsx-no-lambda": false,
    "jsx-no-multiline-js": false
  }
}
