Skip to content
Merged
Prev Previous commit
Next Next commit
chore: fix lint errors
  • Loading branch information
brettkolodny committed Aug 12, 2025
commit 4f73686c735308996cb3dba3cf3af5317cf392b7
10 changes: 8 additions & 2 deletions biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@
"clientKind": "git"
},
"files": {
"includes": ["src/**/*", "!src/client/gen/types.ts", "!pnpm-lock.yaml"],
"includes": [
"src/**/*",
"!src/client/gen/types.ts",
"!pnpm-lock.yaml",
// Ignore components because they're vendored from coder/coder
"!src/client/components/*"
],
"ignoreUnknown": true
},
"linter": {
Expand Down Expand Up @@ -63,5 +69,5 @@
}
}
},
"$schema": "https://biomejs.dev/schemas/2.1.1/schema.json"
"$schema": "https://biomejs.dev/schemas/2.1.4/schema.json"
}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && vite build --mode=client",
"lint": "eslint .",
"lint:biome": "pnpm biome lint --error-on-warnings .",
"preview": "vite preview"
},
"dependencies": {
Expand Down Expand Up @@ -49,6 +49,7 @@
"yup": "^1.6.1"
},
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@eslint/js": "^9.25.0",
"@hono/vite-dev-server": "^0.19.1",
"@types/lodash": "^4.17.17",
Expand All @@ -59,6 +60,7 @@
"@vitejs/plugin-basic-ssl": "^2.0.0",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"dpdm": "^3.14.0",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
Expand Down
Loading