{
  "extends": ["tslint:recommended", "tslint-config-prettier"],
  "defaultSeverity": "warn",
  "rules": {
    "arrow-parens": [true, "ban-single-arg-parens"],
    "forin": false,
    "interface-name": [true, "never-prefix"],
    "max-line-length": {
      "options": [120]
    },
    "new-parens": true,
    "no-angle-bracket-type-assertion": true,
    "no-arg": true,
    "no-bitwise": true,
    "no-conditional-assignment": true,
    "no-consecutive-blank-lines": false,
    "no-console": false,
    "no-unused-expression": [true, "allow-fast-null-checks"],
    "one-line": [true, "check-open-brace"],
    "ordered-imports": false,
    "quotemark": [true, "single", "avoid-escape", "avoid-template"],
    "variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"]
  }
}
