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.
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

Using /tmp for temporary files can lead to conflicts in shared environments like CI/CD pipelines. It is safer to use a project-specific directory like .tmp.

- Put temporary files in the .tmp directory.

- Use `yarn wb start --mode test` to launch a web server for debugging or testing.

## 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.
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

Using /tmp for temporary files can lead to conflicts in shared environments like CI/CD pipelines. It is safer to use a project-specific directory like .tmp.

Suggested change
- Put temporary files in the `.tmp` or `/tmp` directory.
- Put temporary files in the .tmp directory.

- Use `yarn wb start --mode test` to launch a web server for debugging or testing.

## 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.
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

Using /tmp for temporary files can lead to conflicts in shared environments like CI/CD pipelines. It is safer to use a project-specific directory like .tmp.

Suggested change
- Put temporary files in the `.tmp` or `/tmp` directory.
- Put temporary files in the .tmp directory.

- Use `yarn wb start --mode test` to launch a web server for debugging or testing.

## 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.
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

Using /tmp for temporary files can lead to conflicts in shared environments like CI/CD pipelines. It is safer to use a project-specific directory like .tmp.

Suggested change
- Put temporary files in the `.tmp` or `/tmp` directory.
- Put temporary files in the .tmp directory.

- Use `yarn wb start --mode test` to launch a web server for debugging or testing.

## Coding Style
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@
"jsdom": "29.0.2",
"lefthook": "2.1.5",
"next": "16.2.4",
"oxfmt": "0.47.0",
"oxlint": "1.62.0",
"oxfmt": "0.48.0",
"oxlint": "1.63.0",
"oxlint-tsgolint": "0.22.1",
"react": "19.2.5",
"react-dom": "19.2.5",
Expand Down
Loading
Loading