-
Notifications
You must be signed in to change notification settings - Fork 0
chore: willboosterify this repo #18
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
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,7 +50,9 @@ | |
| "test:e2e:next": "yarn build && next build e2e/next-app && playwright test --config e2e/next-app/playwright.config.ts", | ||
| "test:unit": "vitest", | ||
| "test/ci-setup": "playwright install chromium", | ||
| "typecheck": "tsgo --noEmit" | ||
| "typecheck": "tsgo --noEmit", | ||
| "verify": "wb verify", | ||
| "verify-full": "wb verify --full" | ||
|
Comment on lines
+54
to
+55
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. The new To avoid confusion and to align with the style guide's principle of eliminating redundancy, consider removing the old References
|
||
| }, | ||
| "dependencies": { | ||
| "@willbooster/monaco-loader": "1.1.1", | ||
|
|
@@ -69,6 +71,7 @@ | |
| "@typescript/native-preview": "7.0.0-dev.20260421.2", | ||
| "@willbooster/oxfmt-config": "1.2.2", | ||
| "@willbooster/oxlint-config": "1.4.6", | ||
| "@willbooster/wb": "13.12.9", | ||
| "build-ts": "17.1.8", | ||
| "conventional-changelog-conventionalcommits": "9.3.1", | ||
| "jsdom": "29.0.2", | ||
|
|
||
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.
There is significant content duplication across
.cursor/rules/general.mdc,AGENTS.md,CLAUDE.md, andGEMINI.md. This pull request modifies all four files with nearly identical changes, which highlights a maintainability issue.To improve maintainability and reduce redundancy, consider consolidating these files. You could have a single source of truth for the common rules and only specify the differences (like the
Co-authored-byline) in separate, smaller files if needed. This would make future updates much easier.References