{
  "rulesDirectory": [
    "node_modules/tslint/lib/rules",
    "node_modules/tslint-eslint-rules/dist/rules"
  ],
  "rules": {
    "array-bracket-spacing": [
      true,
      "always",
      {
        "singleValue": true,
        "objectsInArrays": true,
        "arraysInArrays": true
      }
    ],
    "arrow-parens": true,
    "block-spacing": [
      true,
      "always"
    ],
    "brace-style": [
      true,
      "1tbs",
      {
        "allowSingleLine": true
      }
    ],
    "class-name": true,
    "comment-format": [
      true,
      "check-space"
    ],
    "eofline": true,
    "forin": true,
    "handle-callback-err": [
      true,
      "^err$"
    ],
    "indent": [
      true,
      "spaces"
    ],
    "interface-name": [ false ],
    "member-ordering": [
      true,
      {
        "order": "statics-first"
      }
    ],
    "new-parens": true,
    "no-arg": true,
    "no-angle-bracket-type-assertion": true,
    "no-bitwise": true,
    "no-conditional-assignment": true,
    "no-consecutive-blank-lines": [
      true,
      2
    ],
    "no-constant-condition": true,
    "no-construct": true,
    "no-control-regex": true,
    "no-default-export": false,
    "no-duplicate-case": true,
    "no-duplicate-variable": true,
    "no-empty": true,
    "no-empty-character-class": true,
    "no-eval": true,
    "no-ex-assign": true,
    "no-extra-boolean-cast": true,
    "no-extra-semi": true,
    "no-for-in-array": false,
    "no-inner-declarations": [
      true,
      "both"
    ],
    "no-internal-module": true,
    "no-invalid-regexp": true,
    "no-invalid-this": [
      true,
      "check-function-in-method"
    ],
    "no-irregular-whitespace": true,
    "no-multi-spaces": [
      true,
      {
        "exceptions": {
          "BinaryExpression": false,
          "PropertyAssignment": false,
          "VariableDeclaration": false
        }
      }
    ],
    "no-namespace": true,
    "no-null-keyword": false,
    "no-reference": true,
    "no-regex-spaces": true,
    "no-sparse-arrays": true,
    "no-switch-case-fall-through": true,
    "no-trailing-whitespace": true,
    "no-unexpected-multiline": true,
    "no-unsafe-finally": true,
    "no-unused-expression": true,
    "no-unused-new": true,
    "no-use-before-declare": true,
    "no-var-keyword": true,
    "no-var-requires": false,
    "object-curly-spacing": [
      true,
      "always"
    ],
    "object-literal-key-quotes": [
      true,
      "as-needed"
    ],
    "object-literal-shorthand": true,
    "object-literal-sort-keys": false,
    "one-line": [
      true,
      "check-catch",
      "check-finally",
      "check-open-brace"
    ],
    "one-variable-per-declaration": [
      true
    ],
    "ordered-imports": [
      true,
      {
        "import-sources-order": "case-insensitive",
        "named-imports-order": "case-insensitive"
      }
    ],
    "quotemark": [
      true,
      "single",
      "jsx-single",
      "avoid-escape"
    ],
    "radix": true,
    "restrict-plus-operands": false,
    "semicolon": [
      true,
      "always"
    ],
    "switch-default": true,
    "trailing-comma": [
      true,
      {
        "multiline": "never",
        "singleline": "never"
      }
    ],
    "triple-equals": true,
    "use-isnan": true,
    "valid-typeof": true,
    "variable-name": [
      true,
      "ban-keywords",
      "check-format",
      "allow-leading-underscore",
      "allow-pascal-case",
      "allow-trailing-underscore"
    ],
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-module",
      "check-separator",
      "check-type",
      "check-typecast"
    ]
  }
}
