From da5d30eef38f3bb9894146075b1f6ba1ea03cf56 Mon Sep 17 00:00:00 2001 From: Ashton Eby Date: Fri, 25 Oct 2024 10:38:14 -0700 Subject: [PATCH] fix: ignore dist directory --- config/eslint.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/eslint.config.js b/config/eslint.config.js index a912794..776d97b 100644 --- a/config/eslint.config.js +++ b/config/eslint.config.js @@ -1,6 +1,10 @@ const config = [ { - ignores: ["**/node_modules", ".history"], + ignores: [ + "**/node_modules", + ".history", + "dist", + ], }, { languageOptions: {