Skip to content
Closed
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
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.{ts,js,json,jsonc}]
indent_style = space
indent_size = 4

[*.{yml,yaml}]
indent_style = space
indent_size = 2

[*.md]
trim_trailing_whitespace = false
19 changes: 19 additions & 0 deletions .oxfmtrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"ignorePatterns": ["src/routeTree.gen.ts", "drizzle/"],
"experimentalSortImports": {
"newlinesBetween": false,
"groups": [
["value-builtin", "value-external"],
["value-internal", "value-parent", "value-sibling", "value-index"],
{
"newlinesBetween": true
},
"type-import",
"unknown"
]
},
"experimentalSortPackageJson": {
"sortScripts": true
}
}
34 changes: 17 additions & 17 deletions .oxlintrc.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["typescript", "react", "import", "unicorn"],
"categories": {
"correctness": "warn",
"suspicious": "warn"
},
"env": {
"browser": true
},
"globals": {
"Bun": "readonly"
},
"rules": {
"react/react-in-jsx-scope": "off",
"import/no-unassigned-import": "off"
},
"ignorePatterns": ["dist/", "node_modules/", ".vercel/", ".astro/"]
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["typescript", "react", "import", "unicorn"],
"categories": {
"correctness": "warn",
"suspicious": "warn"
},
"env": {
"browser": true
},
"globals": {
"Bun": "readonly"
},
"rules": {
"react/react-in-jsx-scope": "off",
"import/no-unassigned-import": "off"
},
"ignorePatterns": ["dist/", "node_modules/", ".vercel/", ".astro/"]
}
2 changes: 0 additions & 2 deletions .prettierignore

This file was deleted.

3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["oxc.oxc-vscode"]
}
20 changes: 20 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"[typescript]": {
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[json]": {
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.preferences.importModuleSpecifier": "non-relative"
}
45 changes: 33 additions & 12 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default {
extends: ["@commitlint/config-conventional"],
rules: {
"body-max-line-length": [0, "always"],
},
extends: ["@commitlint/config-conventional"],
rules: {
"body-max-line-length": [0, "always"],
},
};
42 changes: 21 additions & 21 deletions components.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "",
"css": "frontend/src/index.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"iconLibrary": "lucide",
"rtl": false,
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"registries": {}
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "",
"css": "frontend/src/index.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"iconLibrary": "lucide",
"rtl": false,
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"registries": {}
}
10 changes: 5 additions & 5 deletions conductor.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scripts": {
"setup": "./scripts/setup-conductor-worktree.sh",
"run": "bun run electron:dev",
"archive": "rm -rf "
}
"scripts": {
"setup": "./scripts/setup-conductor-worktree.sh",
"run": "bun run electron:dev",
"archive": "rm -rf "
}
}
12 changes: 6 additions & 6 deletions drizzle.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { defineConfig } from "drizzle-kit";
const databaseUrl = process.env.DATABASE_URL as any;

export default defineConfig({
out: "./drizzle",
schema: "./src/server/db/schema.ts",
dialect: "postgresql",
dbCredentials: {
url: databaseUrl,
},
out: "./drizzle",
schema: "./src/server/db/schema.ts",
dialect: "postgresql",
dbCredentials: {
url: databaseUrl,
},
});
38 changes: 19 additions & 19 deletions knip.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"workspaces": {
".": {
"entry": ["src/router.tsx", "src/routes/**/*.{ts,tsx}", "src/lib/auth-client.ts"],
"project": ["src/**/*.{ts,tsx}"],
"ignore": ["src/components/ui/**", "src/routeTree.gen.ts", "src/server/db/schema.ts"]
"$schema": "https://unpkg.com/knip@5/schema.json",
"workspaces": {
".": {
"entry": ["src/router.tsx", "src/routes/**/*.{ts,tsx}", "src/lib/auth-client.ts"],
"project": ["src/**/*.{ts,tsx}"],
"ignore": ["src/components/ui/**", "src/routeTree.gen.ts", "src/server/db/schema.ts"]
},
"packages/desktop-shell": {
"entry": ["src/preload.mts"],
"project": ["src/**/*.mts"]
},
"packages/runner": {
"project": ["src/**/*.ts"]
},
"packages/marketing": {
"entry": ["src/pages/**/*.{astro,ts}"],
"project": ["src/**/*.{astro,ts}"]
}
},
"packages/desktop-shell": {
"entry": ["src/preload.mts"],
"project": ["src/**/*.mts"]
},
"packages/runner": {
"project": ["src/**/*.ts"]
},
"packages/marketing": {
"entry": ["src/pages/**/*.{astro,ts}"],
"project": ["src/**/*.{astro,ts}"]
}
},
"ignoreDependencies": ["tailwindcss", "shadcn", "tw-animate-css"]
"ignoreDependencies": ["tailwindcss", "shadcn", "tw-animate-css"]
}
Loading
Loading