From e1255d64cc9110d6c16ef84e9df8e1db9de9b098 Mon Sep 17 00:00:00 2001 From: Daniel Bolin Date: Tue, 6 Aug 2024 13:41:26 -0400 Subject: [PATCH] fix: :adhesive_bandage: Fix misspelled option in lint staged commands --- .lintstagedrc.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.lintstagedrc.mjs b/.lintstagedrc.mjs index 08d780bea..5c2f69518 100644 --- a/.lintstagedrc.mjs +++ b/.lintstagedrc.mjs @@ -1,5 +1,5 @@ -const lint = 'npx nx affected:lint --uncommited --fix true'; -const format = 'npx nx format:write --uncommited'; +const lint = 'npx nx affected:lint --uncommitted --fix true'; +const format = 'npx nx format:write --uncommitted'; export default { '*.{js,mjs,cjs,ts,html,scss,css}': [lint, format],