tvl-depot/users/Profpatsch/declib/.eslintrc.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
353 B
JSON
Raw Normal View History

{
"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"
}
}