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
1 change: 1 addition & 0 deletions .cursor/rules/general.mdc
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ alwaysApply: true
- If not specified, make sure to add a new line at the end of your commit message with: `Co-authored-by: WillBooster (Cursor) <agent@willbooster.com>`.
- Always create new commits. Avoid using `--amend`.
- Always use heredoc syntax when passing multi-line content to any command.
- Put temporary files in the `.tmp` or `/tmp` directory.

## Coding Style

Expand Down
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
- If not specified, make sure to add a new line at the end of your commit message with: `Co-authored-by: WillBooster (Codex CLI) <agent@willbooster.com>`.
- Always create new commits. Avoid using `--amend`.
- Always use heredoc syntax when passing multi-line content to any command.
- Put temporary files in the `.tmp` or `/tmp` directory.

## Coding Style

Expand Down
1 change: 1 addition & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
- If not specified, make sure to add a new line at the end of your commit message with: `Co-authored-by: WillBooster (Claude Code) <agent@willbooster.com>`.
- Always create new commits. Avoid using `--amend`.
- Always use heredoc syntax when passing multi-line content to any command.
- Put temporary files in the `.tmp` or `/tmp` directory.

## Coding Style

Expand Down
1 change: 1 addition & 0 deletions GEMINI.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
- If not specified, make sure to add a new line at the end of your commit message with: `Co-authored-by: WillBooster (Gemini CLI) <agent@willbooster.com>`.
- Always create new commits. Avoid using `--amend`.
- Always use heredoc syntax when passing multi-line content to any command.
- Put temporary files in the `.tmp` or `/tmp` directory.

## Coding Style

Expand Down
4 changes: 4 additions & 0 deletions oxfmt.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// wbfy:start oxfmt-base
import config from '@willbooster/oxfmt-config';
// wbfy:end oxfmt-base

// wbfy:start oxfmt-export
export default config;
// wbfy:end oxfmt-export
Comment on lines +1 to +7
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The added wbfy markers are redundant and clutter the configuration file. Please remove them to simplify the code as per the repository style guide.

References
  1. Simplify code as much as possible to eliminate redundancy. (link)

4 changes: 2 additions & 2 deletions oxlint.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// wbfy:start oxlint-base
import config from '@willbooster/oxlint-config';
import oxlintResolvedConfig from '@willbooster/oxlint-config';
// wbfy:end oxlint-base

// wbfy:start oxlint-export
export default config;
export default oxlintResolvedConfig;
// wbfy:end oxlint-export
Comment on lines 1 to 7
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The added wbfy markers are redundant and clutter the configuration file. Please remove them to simplify the code as per the repository style guide.

References
  1. Simplify code as much as possible to eliminate redundancy. (link)

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@
"@willbooster/oxfmt-config": "1.2.2",
"@willbooster/oxlint-config": "1.4.6",
"@willbooster/prettier-config": "10.4.0",
"@willbooster/wb": "13.12.10",
"@willbooster/wb": "13.12.13",
"build-ts": "17.1.10",
"conventional-changelog-conventionalcommits": "9.3.1",
"dotenv-cli": "11.0.0",
"lefthook": "2.1.6",
"oxfmt": "0.47.0",
"oxlint": "1.62.0",
"oxfmt": "0.48.0",
"oxlint": "1.63.0",
"oxlint-tsgolint": "0.22.1",
"prettier": "3.8.3",
"prettier-plugin-java": "2.8.1",
Expand Down
Loading
Loading