From e55ac84ced83eb24101b37f5310e40b311b41acd Mon Sep 17 00:00:00 2001 From: Xevion Date: Wed, 16 Jul 2025 13:23:50 -0500 Subject: [PATCH] chore: tune .vscode/settings.json fileNesting, remove src/lib/ leftover --- .vscode/settings.json | 5 +++-- src/lib/utils.ts | 6 ------ 2 files changed, 3 insertions(+), 8 deletions(-) delete mode 100644 src/lib/utils.ts diff --git a/.vscode/settings.json b/.vscode/settings.json index 608ad9b..2800d67 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,9 +1,10 @@ { "explorer.fileNesting.enabled": true, "explorer.fileNesting.patterns": { - "tsconfig.json": "tsconfig.*.json, env.d.ts", "vite.config.*": "jsconfig*, vitest.config.*, cypress.config.*, playwright.config.*", - "package.json": "package-lock.json, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .oxlint*, oxlint*, .prettier*, prettier*, .editorconfig" + "package.json": "package-lock.json, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .oxlint*, oxlint*, .prettier*, prettier*, .editorconfig, components.json", + ".gitignore": ".gitattributes", + "nuxt.config.ts": "tsconfig.json" }, "editor.codeActionsOnSave": { "source.fixAll": "explicit" diff --git a/src/lib/utils.ts b/src/lib/utils.ts deleted file mode 100644 index 9ad0df4..0000000 --- a/src/lib/utils.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { type ClassValue, clsx } from 'clsx'; -import { twMerge } from 'tailwind-merge'; - -export function cn(...inputs: ClassValue[]) { - return twMerge(clsx(inputs)); -}