Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@
},
"[github-actions-workflow]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.removeUnusedImports": "explicit"
}
}
40 changes: 32 additions & 8 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,39 @@
{
"$schema": "https://biomejs.dev/schemas/1.6.3/schema.json",
"organizeImports": {
"enabled": true
},
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"formatter": {
"enabled": true
"enabled": true,
"indentStyle": "tab"
},
"files": {
"ignore": ["dist", "node_modules", ".next"]
"organizeImports": {
"enabled": false
},
"linter": {
"enabled": false
"enabled": true,
"rules": {
"recommended": false,
"suspicious": {
"noImplicitAnyLet": "warn",
"noDuplicateObjectKeys": "warn"
},
"performance": {
"noDelete": "error"
},
"complexity": {
"noUselessSwitchCase": "warn",
"noUselessTypeConstraint": "warn"
}
}
},
"files": {
"ignore": [
"dist",
".next",
".svelte-kit",
"package.json",
".contentlayer",
".turbo",
".nuxt",
".source"
]
}
}
44 changes: 22 additions & 22 deletions dev/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,

// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,

// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,

// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}
Binary file removed doc/app/.DS_Store
Binary file not shown.
Binary file removed doc/app/api/.DS_Store
Binary file not shown.
11 changes: 0 additions & 11 deletions doc/app/api/search/route.ts

This file was deleted.

55 changes: 0 additions & 55 deletions doc/app/docs/[[...slug]]/page.tsx

This file was deleted.

9 changes: 0 additions & 9 deletions doc/app/docs/layout.tsx

This file was deleted.

52 changes: 0 additions & 52 deletions doc/app/global.css

This file was deleted.

31 changes: 0 additions & 31 deletions doc/app/layout.config.tsx

This file was deleted.

49 changes: 0 additions & 49 deletions doc/app/layout.tsx

This file was deleted.

38 changes: 0 additions & 38 deletions doc/app/page.tsx

This file was deleted.

10 changes: 0 additions & 10 deletions doc/app/source.ts

This file was deleted.

Binary file removed doc/components/.DS_Store
Binary file not shown.
Loading