{
  "extends": ["tslint:latest", "tslint-config-prettier"],
  "rules": {
    "class-name": true,
    "comment-format": [true, "check-space"],
    "indent": [true, "spaces"],
    "linebreak-style": [true, "LF"],
    "one-line": [true, "check-open-brace", "check-whitespace"],
    "no-var-keyword": true,
    "interface-name": [true, "never-prefix"],
    "quotemark": [true, "single", "avoid-escape"],
    "semicolon": [true, "never", "ignore-bound-class-methods"],
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-module",
      "check-separator",
      "check-type"
    ],
    "typedef-whitespace": [
      true,
      {
        "call-signature": "nospace",
        "index-signature": "nospace",
        "parameter": "nospace",
        "property-declaration": "nospace",
        "variable-declaration": "nospace"
      }
    ],
    "no-internal-module": true,
    "no-trailing-whitespace": true,
    "no-inferrable-types": true,
    "no-null-keyword": true,
    "prefer-const": true,
    "no-shadowed-variable": false,
    "member-access": false,
    "no-empty": false
  }
}
