{
    "extends": [
      "tslint-react",
      "tslint-config-standard",
      "tslint-microsoft-contrib",
      "tslint-config-prettier"
    ],
    "rules": {
      "array-bracket-spacing": [true, "never"],
      "arrow-return-shorthand": true,
      "no-backbone-get-set-outside-model": false,
      "completed-docs": false,
      "curly": [true, "ignore-same-line"],
      "cyclomatic-complexity": [true, 24],
      "eofline": true,
      "export-name": false,
      "function-name": false,
      "import-name": false,
      "import-spacing": true,
      "interface-name": [true, "never-prefix"],
      "jsx-alignment": false,
      "jsx-boolean-value": false,
      "jsx-curly-spacing": false,
      "jsx-no-multiline-js": false,
      "match-default-export-name": false,
      "max-func-body-length": 200,
      "member-access": [true, "no-public"],
      "member-ordering": {"options": [{"order": "fields-first"}]},
      "missing-jsdoc": false,
      "mocha-no-side-effect-code": false,
      "no-arg": true,
      "no-bitwise": true,
      "no-console": false,
      "no-construct": true,
      "no-default-export": false,
      "no-duplicate-switch-case": true,
      "no-duplicate-variable": true,
      "no-empty-interface": false,
      "no-eval": true,
      "no-function-expression": false,
      "no-http-string": false,
      "no-implicit-dependencies": false,
      "no-multiline-string": false,
      "no-non-null-assertion": true,
      "no-relative-imports": false,
      "no-require-imports": {"severity": "warning"},
      "no-reserved-keywords": false,
      "no-return-await": true,
      "no-single-line-block-comment": false,
      "no-string-throw": true,
      "no-submodule-imports": false,
      "no-suspicious-comment": false,
      "no-unsafe-any": false,
      "no-unused-variable": false,
      "no-var-requires": true,
      "no-void-expression": false,
      "object-curly-spacing": [true, "never"],
      "ordered-imports": false,
      "prefer-for-of": true,
      "prefer-object-spread": true,
      "prefer-type-cast": false,
      "quotemark": [true, "single", "jsx-double", "avoid-escape"],
      "semicolon": [true, "never"],
      "strict-boolean-expressions": false,
      "strict-type-predicates": false,
      "ter-func-call-spacing": [true, "never"],
      "trailing-comma": [true, "always"],
      "type-literal-delimiter": false,
      "typedef": false,
      "typedef-whitespace": [
        true,
        {
          "call-signature": "nospace",
          "index-signature": "nospace",
          "parameter": "nospace",
          "property-declaration": "nospace",
          "variable-declaration": "nospace"
        },
        {
          "call-signature": "onespace",
          "index-signature": "onespace",
          "parameter": "onespace",
          "property-declaration": "onespace",
          "variable-declaration": "onespace"
        }
      ],
      "unified-signatures": true,
      "variable-name": false,
      "whitespace": [
        true,
        "check-branch",
        "check-operator",
        "check-typecast",
        "check-rest-spread",
        "check-type-operator"
      ]
    }
  }