From 63a919f0032c9484265180f2190106ae4cdb9c2b Mon Sep 17 00:00:00 2001 From: Kavian77 Date: Thu, 26 Dec 2024 20:34:03 +0100 Subject: [PATCH] Instruct ESLint to ignore all dist folders, even those that are nested --- eslint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index 94f3ad7..7925591 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -5,7 +5,7 @@ import noOnlyTestsPlugin from "eslint-plugin-no-only-tests"; import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended"; export default tseslint.config( - { ignores: ["dist"] }, + { ignores: ["**/dist"] }, { extends: [ js.configs.recommended,