Created the .eslintrc.json

This commit is contained in:
Mathias Wagner 2023-04-18 21:02:48 +00:00
parent 675e01a5d0
commit c6acd32178

13
.eslintrc.json Normal file
View File

@ -0,0 +1,13 @@
{
"root": true,
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": ["./tsconfig.json"] },
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-use-before-define": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/quotes": ["warn", "double", {"allowTemplateLiterals": true}]
}
}