chore: tune .vscode/settings.json fileNesting, remove src/lib/ leftover

This commit is contained in:
2025-07-16 13:23:50 -05:00
parent 0c19055d3b
commit e55ac84ced
2 changed files with 3 additions and 8 deletions
+3 -2
View File
@@ -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"
-6
View File
@@ -1,6 +0,0 @@
import { type ClassValue, clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}