{
  "extends": ["tslint:recommended", "tslint-react"],
  "rules": {
    "align": [true, "parameters", "statements", "members"],
    "ban": false,
    "class-name": true,
    "comment-format": [true, "check-space"],
    "curly": false,
    "forin": true,
    "indent": [true, "spaces"],
    "jsdoc-format": true,
    "jsx-no-bind": false,
    "jsx-no-multiline-js": false,
    "jsx-no-lambda": false,
    "label-position": true,
    "max-line-length": [
      true,
      {
        "limit": 140,
        "ignore-pattern": "^import |^export {(.*?)}"
      }
    ],
    "member-access": true,
    "member-ordering": [
      true,
      {
        "order": [
          "public-static-field",
          "public-instance-field",
          "public-constructor",
          "private-static-field",
          "private-instance-field",
          "private-constructor",
          "public-instance-method",
          "protected-instance-method",
          "private-instance-method"
        ]
      }
    ],
    "no-any": false,
    "no-arg": true,
    "no-bitwise": false,
    "no-conditional-assignment": true,
    "no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
    "no-construct": true,
    "no-debugger": true,
    "no-duplicate-imports": false,
    "no-duplicate-variable": true,
    "no-empty": false,
    "no-eval": true,
    "no-inferrable-types": false,
    "no-internal-module": false,
    "interface-name": false,
    "no-require-imports": false,
    "no-shadowed-variable": true,
    "no-string-literal": true,
    "no-switch-case-fall-through": false,
    "no-trailing-whitespace": true,
    "no-unused-expression": [true, "allow-fast-null-checks"],
    "no-unused-variable": true,
    "no-use-before-declare": false,
    "no-var-keyword": true,
    "no-var-requires": true,
    "object-literal-sort-keys": false,
    "one-line": [
      true,
      "check-open-brace",
      "check-catch",
      "check-else",
      "check-whitespace"
    ],
    "object-literal-key-quotes": [true, "as-needed"],
    "only-arrow-functions": false,
    "ordered-imports": true,
    "quotemark": [true, "single"],
    "prefer-for-of": false,
    "radix": true,
    "semicolon": [true, "always"],
    "space-before-function-paren": [true, "always"],
    "switch-default": true,
    "trailing-comma": [
      true,
      {
        "multiline": {
          "arrays": "always",
          "functions": "never"
        },
        "singleline": "never"
      }
    ],
    "triple-equals": [true, "allow-null-check"],
    "typedef-whitespace": [
      true,
      {
        "call-signature": "nospace",
        "index-signature": "nospace",
        "parameter": "nospace",
        "property-declaration": "nospace",
        "variable-declaration": "nospace"
      }
    ],
    "variable-name": false,
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-separator",
      "check-type"
    ],
    "max-classes-per-file": false,
    "arrow-parens": false
  }
}
