feat: Update ESLint configuration to ignore build and test files
This commit is contained in:
@@ -5,6 +5,14 @@ const tseslint = require("typescript-eslint");
|
||||
const eslintConfigPrettier = require("eslint-config-prettier");
|
||||
|
||||
module.exports = tseslint.config(
|
||||
{
|
||||
ignores: [
|
||||
"**/dist/", // Ignoriere den Build-Ordner
|
||||
"**/*.config.js", // Ignoriere Konfigurationsdateien
|
||||
"**/*.test.ts", // Ignoriere alle TypeScript-Testdateien
|
||||
"**/*.spec.ts", // Ignoriere alle TypeScript-Spec-Dateien
|
||||
]
|
||||
},
|
||||
eslint.configs.recommended,
|
||||
...tseslint.configs.recommended,
|
||||
|
||||
|
||||
Reference in New Issue
Block a user