Combine ESLint configurations

Instead of having different ESLint configuration files in each
directory which don't seem to inherit the configuration correctly, this
will add `overrides` in the root file.
This commit is contained in:
Koen Vlaswinkel
2023-01-30 16:43:19 +01:00
parent 87465a65ae
commit 5f382a5677
9 changed files with 178 additions and 157 deletions

View File

@@ -0,0 +1,4 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*.ts", "**/.eslintrc.js", "jest.config.js"]
}