From 7a7e1d5c5b0ec091a3cc463324369b6be3449862 Mon Sep 17 00:00:00 2001 From: Riceball <42161586+riceball-tw@users.noreply.github.com> Date: Thu, 9 Jan 2025 13:53:26 +0800 Subject: [PATCH] chore: Avoid linting shadcn component --- eslint.config.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 934c3a1..010728a 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -2,5 +2,7 @@ import withNuxt from './.nuxt/eslint.config.mjs' export default withNuxt( - // Your custom configs here + { + ignores: ["components/ui/**/*"], + } )