From b2ac5b63371c7c25dabcca7429edb7f6d7498a2f Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Mon, 3 Mar 2025 22:18:29 +0100 Subject: [PATCH] chore(eslint): ignore certain folders --- eslint.config.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index becf4c3b0..a0f099c48 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -7,7 +7,7 @@ export default tseslint.config( // consider using rules below, once we have a full TS codebase and can be more strict // tseslint.configs.strictTypeChecked, // tseslint.configs.stylisticTypeChecked, - //tseslint.configs.recommendedTypeChecked, + // tseslint.configs.recommendedTypeChecked, { languageOptions: { parserOptions: { @@ -23,6 +23,13 @@ export default tseslint.config( } }, { - ignores: ["build/*", "dist/*", "src/public/app-dist/*"] + ignores: [ + "build/*", + "dist/*", + "docs/*", + "libraries/*", + "src/public/app-dist/*", + "src/public/app/doc_notes/*" + ] } );