From be13a64d502180cd3322116c6370fd8ebf90915f Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Wed, 22 Jan 2025 10:49:23 +0100 Subject: [PATCH] build(frontend): add lintfix npm script --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c02444686..63fd171f0 100644 --- a/package.json +++ b/package.json @@ -90,6 +90,7 @@ "scripts": { "build": "node esbuild.config.mjs", "start": "node esbuild.config.mjs --watch", - "lint": "eslint --ignore-pattern .stack/* --color ." + "lint": "eslint --ignore-pattern .stack/* --color .", + "lintfix": "eslint --ignore-pattern .stack/* --color --fix ." } }