From 9f8af30e6da4fb4b1371ba9fe5d4bd8b5921bbd1 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Wed, 22 Jan 2025 10:48:42 +0100 Subject: [PATCH] build(frontend): ignore .stack folder for eslint --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 65a89bbd9..c02444686 100644 --- a/package.json +++ b/package.json @@ -90,6 +90,6 @@ "scripts": { "build": "node esbuild.config.mjs", "start": "node esbuild.config.mjs --watch", - "lint": "eslint --color ." + "lint": "eslint --ignore-pattern .stack/* --color ." } }