aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: 26cbded589c82fd3417545d56233833487153417 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "parser": "@typescript-eslint/parser",
  "plugins": [
    "@typescript-eslint",
    "eslint-plugin-tsdoc"
  ],
  "extends": [
    "eslint:recommended",
    "plugin:@typescript-eslint/eslint-recommended",
    "plugin:@typescript-eslint/recommended",
    "plugin:prettier/recommended"
  ],
  "rules": {
    "no-var": "error",
    "tsdoc/syntax": "warn",
    "no-constant-condition": "off"
  }
}