about summary refs log tree commit diff
path: root/users/Profpatsch/declib/.eslintrc.json
blob: 9cffc711dbd1f0dde1e1bb7af98099d3f31266f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "extends": ["eslint:recommended", "plugin:@typescript-eslint/strict-type-checked"],
  "parser": "@typescript-eslint/parser",
  "plugins": ["@typescript-eslint"],
  "parserOptions": {
    "project": true
  },
  "root": true,
  "rules": {
    "no-unused-vars": "warn",
    "prefer-const": "warn",
    "@typescript-eslint/no-unused-vars": "warn"
  }
}