{
  "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
  "rules": {
    "semicolon": [true, "never"],
    "ordered-imports": false,
    "adjacent-overload-signatures": true,
    "array-type": [true, "array"],
    "arrow-parens": [true, "ban-single-arg-parens"],
    "arrow-return-shorthand": [true],
    "await-promise": [true, "Bluebird"],
    "callable-types": false,
    "class-name": true,
    "comment-format": [true, "check-space"],
    "curly": false,
    "deprecation": {
      "severity": "warning"
    },
    "eofline": false,
    "import-spacing": true,
    "interface-name": [false],
    "interface-over-type-literal": true,
    "jsdoc-format": true,
    "jsx-ban-props": [true, ["style", "Move styles into an SCSS stylesheet"]],
    "jsx-key": false,
    "jsx-no-multiline-js": false,
    "jsx-self-close": false,
    "max-classes-per-file": false,
    "member-access": [true, "check-accessor"],
    "member-ordering": false,
    "new-parens": true,
    "no-angle-bracket-type-assertion": true,
    "no-arg": true,
    "no-bitwise": false,
    "no-boolean-literal-compare": false,
    "no-conditional-assignment": true,
    "no-consecutive-blank-lines": [true, 1],
    "no-console": true,
    "no-construct": true,
    "no-debugger": true,
    "no-duplicate-super": true,
    "no-duplicate-variable": true,
    "no-empty": true,
    "no-empty-interface": false,
    "no-eval": true,
    "no-floating-promises": [true],
    "no-for-in-array": true,
    "no-inferrable-types": [true],
    "no-inferred-empty-object-type": true,
    "no-internal-module": true,
    "no-invalid-template-strings": true,
    "no-irregular-whitespace": true,
    "no-magic-numbers": false,
    "no-misused-new": true,
    "no-namespace": [false, "allow-declarations"],
    "no-reference-import": true,
    "no-shadowed-variable": false,
    "no-sparse-arrays": true,
    "no-string-literal": false,
    "no-string-throw": true,
    "no-trailing-whitespace": true,
    "no-unbound-method": false,
    "no-unnecessary-callback-wrapper": false,
    "no-unnecessary-qualifier": false,
    "no-unnecessary-type-assertion": false,
    "no-unsafe-any": false,
    "no-unsafe-finally": true,
    "no-unused-expression": true,
    "no-unused-variable": false,
    "no-use-before-declare": false,
    "no-var-keyword": true,
    "no-var-requires": false,
    "no-void-expression": false,
    "number-literal-format": true,
    "object-literal-key-quotes": [true, "as-needed"],
    "object-literal-shorthand": true,
    "object-literal-sort-keys": false,
    "one-variable-per-declaration": [true, "ignore-for-loop"],
    "only-arrow-functions": [
      true,
      "allow-declarations",
      "allow-named-functions"
    ],
    "prefer-const": false,
    "prefer-for-of": true,
    "prefer-template": [false, "allow-single-concat"],
    "quotemark": false,
    "return-undefined": false,
    "space-before-function-paren": [
      true,
      {
        "anonymous": "never",
        "asyncArrow": "always",
        "named": "never"
      }
    ],
    "triple-equals": false,
    "typedef": [true, "call-signature"],
    "unified-signatures": true,
    "variable-name": [true, "ban-keywords"],
    "ban-types": false
  }
}
