-
Couldn't load subscription status.
- Fork 130
fix: fix biome ignore path #3249
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
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 3 Skipped Deployments
|
How to use the Graphite Merge QueueAdd the label merge-queue to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
PR ReviewSummaryThis PR fixes the Biome configuration to properly ignore the engine/artifacts directory. The changes update the ignore path pattern and apply formatting changes to the error JSON files in that directory. Code Quality - ApprovedPositive aspects:
Observations:
Best Practices - ApprovedThe changes follow repository conventions:
Potential Issues - MinorMinor concern: Question: Security - No IssuesNo security concerns identified. This is a configuration and formatting change with no functional impact. Performance - No ImpactNo performance implications. These are configuration and formatting changes only. Test Coverage - N/ANo tests needed for this change. The fix can be verified by:
Recommendations
Overall AssessmentThis is a well-executed fix that correctly addresses the ignore path issue. The PR is focused, the changes are appropriate, and there are no functional concerns. Recommendation: Approve and Merge The formatting changes are a natural consequence of fixing the ignore path, and the configuration update properly reflects the repository structure. |
More templates
@rivetkit/actor
@rivetkit/cloudflare-workers
@rivetkit/core
@rivetkit/db
@rivetkit/framework-base
@rivetkit/next-js
@rivetkit/react
rivetkit
@rivetkit/sql-loader
@rivetkit/engine-runner
@rivetkit/engine-runner-protocol
commit: |
4b9f24b to
f28b056
Compare
7b4e5e7 to
323a773
Compare
PR Review: Fix biome ignore path🚨 Critical Issue - JSON Syntax ErrorThere is a missing comma on line 11 after "!engine/sdks/typescript/runner-protocol"
"!examples/snippets", // <-- Missing comma on the line aboveThis will cause biome to fail when it tries to parse this configuration file. Code Quality ObservationsPositive Changes:
Suggestions:
Testing RecommendationAfter fixing the syntax error, verify the configuration works: npx @biomejs/biome check --config-path=biome.jsonSummaryStatus: ❌ Needs changes (syntax error must be fixed) Priority: High - The missing comma will break biome entirely Action Items:
|
PR Review: Fix biome ignore pathSummaryThis PR fixes a syntax error in Issues FoundCritical Issue - Missing Comma
|
323a773 to
a97aa78
Compare
f28b056 to
5b91eee
Compare
PR Review: Fix biome ignore pathSummaryThis PR reorganizes the Issues FoundThe current state of "!engine/sdks/typescript/api-full",
"!engine/sdks/typescript/runner-protocol" // ❌ Missing comma here
"!examples/snippets",This should be: "!engine/sdks/typescript/api-full",
"!engine/sdks/typescript/runner-protocol", // ✅ Comma added
"!examples/snippets",FeedbackPositive:
Issues:
Recommendations:
Severity🔴 High - This PR introduces a breaking syntax error that will prevent biome from functioning. Review generated by Claude Code |
Pull Request ReviewSummaryThis PR reorganizes the Biome configuration ignore paths and fixes a critical syntax error. ✅ Positive Findings
🐛 Critical Issue FoundMissing Comma on Line 11 There's a syntax error in the current merged code at "!engine/sdks/typescript/runner-protocol"is missing a trailing comma before the next item. This will cause JSON parsing to fail. Expected: "!engine/sdks/typescript/runner-protocol",🔍 Code Quality ObservationsRedundant Patterns:
Since "includes": [
"**/*.js",
"**/*.json",
"**/*.ts",
"!engine/artifacts",
"!engine/sdks",
"!examples/snippets",
"!frontend",
"!rivetkit-openapi/openapi.json",
"!scripts",
"!website"
],📝 Recommendations
Security & Performance
Test Coverage
Overall Assessment: The organizational improvements are good, but the missing comma is a blocking issue that needs immediate attention. |

No description provided.