mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-05 20:15:31 -04:00
5a1636baa3
- Replace Biome with oxlint + oxfmt (OXC toolchain) for linting and formatting - Add .oxlintrc.json and .oxfmtrc.json configuration files - Update VS Code settings and devcontainer to use oxc-vscode extension - Remove contact form, Resend email integration, and related server action/schema - Remove unused UI components (accordion, alert, card, tabs, toggle, etc.)
30 lines
633 B
JSON
30 lines
633 B
JSON
{
|
|
"$schema": "./node_modules/oxfmt/configuration_schema.json",
|
|
"sortImports": {
|
|
"groups": [
|
|
"builtin",
|
|
"external",
|
|
["internal", "subpath"],
|
|
["parent", "sibling", "index"],
|
|
"style",
|
|
"unknown"
|
|
],
|
|
"internalPattern": ["@/"],
|
|
"newlinesBetween": true,
|
|
"order": "asc"
|
|
},
|
|
"sortTailwindcss": {
|
|
"attributes": ["className"],
|
|
"functions": ["cn", "clsx", "cva"]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.json", "**/*.jsonc"],
|
|
"options": {
|
|
"trailingComma": "none"
|
|
}
|
|
}
|
|
],
|
|
"ignorePatterns": ["node_modules", ".next", ".vercel", "drizzle"]
|
|
}
|