Skip to content
Merged
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 .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Auto-generated lockfiles — collapse in GitHub / diffs UIs
Cargo.lock linguist-generated=true
pnpm-lock.yaml linguist-generated=true
3,778 changes: 1,655 additions & 2,123 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,12 @@ struct Cli {
#[command(flatten)]
serve: ServeFlags,
/// Path to the git repository to review
#[arg(long, default_value = ".", value_name = "PATH", help_heading = "Global options")]
#[arg(
long,
default_value = ".",
value_name = "PATH",
help_heading = "Global options"
)]
dir: PathBuf,
#[command(subcommand)]
command: Option<Command>,
Expand Down
21 changes: 21 additions & 0 deletions web/.oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["typescript", "unicorn", "oxc", "react"],
"categories": {
"correctness": "error"
},
"env": {
"builtin": true,
"browser": true
},
"ignorePatterns": ["dist"],
"rules": {
"react/only-export-components": [
"warn",
{
"allowConstantExport": true,
"allowExportNames": ["buttonVariants", "toggleVariants"]
}
]
}
}
28 changes: 0 additions & 28 deletions web/eslint.config.js

This file was deleted.

51 changes: 23 additions & 28 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,45 +6,40 @@
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.json && vite build",
"lint": "eslint .",
"lint": "oxlint",
"format": "oxfmt",
"format:check": "oxfmt --check",
"preview": "vite preview"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@pierre/diffs": "^1.2.4",
"@pierre/trees": "^1.0.0-beta.4",
"@tabler/icons-react": "^3.44.0",
"@tailwindcss/vite": "^4.3.0",
"@base-ui/react": "^1.7.0",
"@fontsource-variable/inter": "^5.3.0",
"@fontsource/jetbrains-mono": "^5.3.0",
"@pierre/diffs": "^1.3.2",
"@pierre/trees": "1.0.0-beta.6",
"@tabler/icons-react": "^3.46.0",
"@tailwindcss/vite": "^4.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router": "^7.16.0",
"shadcn": "^4.8.2",
"simple-icons": "^16.21.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router": "^8.3.0",
"shadcn": "^4.16.1",
"simple-icons": "^16.28.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"enhanced-resolve": "^5.22.1",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"oxfmt": "^0.52.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.60.0",
"vite": "^8.0.12"
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"enhanced-resolve": "^5.24.5",
"oxfmt": "^0.62.0",
"oxlint": "^1.77.0",
"typescript": "~7.0.2",
"vite": "^8.2.0"
}
}
Loading