{
  "extends": ["tslint:latest", "tslint-react", "tslint-sonarts"],
  "rules": {
    "align": [ true, "parameters", "arguments", "statements" ],
    "ban": false,
    "class-name": true,
    "comment-format": [ true, "check-space" ],
    "curly": true,
    "eofline": false,
    "forin": true,
    "import-blacklist": [ true, "rxjs" ],
    "indent": [true, "spaces"],
    "interface-name": [true, "never-prefix"],
    "jsdoc-format": true,
    "jsx-no-lambda": false,
    "jsx-no-multiline-js": false,
    "label-position": true,
    "max-line-length": { "severity": "warning", "options": [200] },
    "member-ordering": [ true, "public-before-private", "static-before-instance", "variables-before-functions" ],
    "no-any": false,
    "no-arg": true,
    "no-bitwise": true,
    "no-consecutive-blank-lines": true,
    "no-console": [ false, "debug", "info", "time", "timeEnd", "trace" ],
    "no-construct": true,
    "no-debugger": true,
    "no-duplicate-string": false,
    "no-duplicate-variable": true,
    "no-empty": true,
    "no-empty-interface": false,
    "no-eval": true,
    "no-implicit-dependencies" : false,
    "no-shadowed-variable": true,
    "no-small-switch": false,
    "no-string-literal": false,
    "no-submodule-imports": [ true, "react-dom/server", "redux-saga", "Foundation", "Project", "Feature" ],
    "no-switch-case-fall-through": true,
    "no-trailing-whitespace": true,
    "no-unused-expression": true,
    "no-use-before-declare": true,
    "one-line": [ true, "check-catch", "check-else", "check-open-brace", "check-whitespace" ],
    "quotemark": [true, "single", "jsx-double"],
    "radix": true,
    "semicolon": [true, "always"],
    "switch-default": true,
    "trailing-comma": [false],
    "triple-equals": [true, "allow-null-check"],
    "typedef": [ true, "parameter", "property-declaration" ],
    "typedef-whitespace": [
      true,
      {
        "call-signature": "nospace",
        "index-signature": "nospace",
        "parameter": "nospace",
        "property-declaration": "nospace",
        "variable-declaration": "nospace"
      }
    ],
    "variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"],
    "whitespace": [ true, "check-branch", "check-decl", "check-module", "check-operator", "check-separator", "check-type", "check-typecast" ]
  },
  "jsRules": {
    "max-line-length": { "severity": "warning", "options": [200] },
    "quotemark": [true, "single", "jsx-double"]
  }
}