-
Notifications
You must be signed in to change notification settings - Fork 0
fix(ci): make biome lint/format robust to the .claude worktree path #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -6,15 +6,15 @@ | |||||||||
| "packageManager": "pnpm@11.3.0", | ||||||||||
| "scripts": { | ||||||||||
| "build": "pnpm -r build", | ||||||||||
| "lint": "biome lint .", | ||||||||||
| "lint": "biome lint packages test-env *.json", | ||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Biome does not natively support glob expansion (like
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
On Windows, pnpm scripts run under Useful? React with 👍 / 👎. |
||||||||||
| "typecheck": "pnpm -r typecheck", | ||||||||||
| "test": "pnpm -r test", | ||||||||||
| "test:env:up": "docker compose -f test-env/docker-compose.yml up -d --wait", | ||||||||||
| "test:env:down": "docker compose -f test-env/docker-compose.yml down -v", | ||||||||||
| "test:integration:run": "INTEGRATION_MODELS_INFO_URL=${INTEGRATION_MODELS_INFO_URL:-http://127.0.0.1:18080/v1/models} pnpm -r --if-present test:integration", | ||||||||||
| "test:integration": "pnpm test:env:up && (pnpm test:integration:run; status=$?; pnpm test:env:down; exit $status)", | ||||||||||
| "format": "biome format --write .", | ||||||||||
| "format:check": "biome format ." | ||||||||||
| "format": "biome format --write packages test-env *.json", | ||||||||||
| "format:check": "biome format packages test-env *.json" | ||||||||||
|
Comment on lines
+16
to
+17
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similarly, replace the
Suggested change
|
||||||||||
| }, | ||||||||||
| "devDependencies": { | ||||||||||
| "@biomejs/biome": "2.4.15", | ||||||||||
|
|
||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update the documentation to reflect the explicit JSON filenames (
package.json biome.json tsconfig.base.json) instead of the*.jsonglob pattern for accuracy and consistency with the updatedpackage.jsonscripts.