Skip to content
Open
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
4 changes: 2 additions & 2 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ Examples of unacceptable behavior include:

## Enforcement Responsibilities

Maintaners are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
Maintainers are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.

Mainteiners have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
Maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.

## Scope

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The Elysia.js repo is using [bun](https://bun.sh). Make sure you have the [lates

### Unit Testing

In Elysia.js, all of the test files are located inside the [`test/`](test/) directory. Unit testing are powered by [bun's test](https://github.com/oven-sh/bun/tree/main/packages/bun-internal-test).
In Elysia.js, all of the test files are located inside the [`test/`](test/) directory. Unit testing are powered by [bun's test runner](https://bun.sh/docs/test).
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Fix grammatical agreement and consider style improvement.

Line 21 has a subject-verb agreement issue: "Unit testing are" should be either "Unit tests are" (plural) or "Unit testing is" (singular). Additionally, the linter suggests removing "of" from "all of the test files" for more concise phrasing.

Apply this diff to fix the grammatical issue and improve style:

-In Elysia.js, all of the test files are located inside the [`test/`](test/) directory. Unit testing are powered by [bun's test runner](https://bun.sh/docs/test).
+In Elysia.js, all the test files are located inside the [`test/`](test/) directory. Unit tests are powered by [bun's test runner](https://bun.sh/docs/test).
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
In Elysia.js, all of the test files are located inside the [`test/`](test/) directory. Unit testing are powered by [bun's test runner](https://bun.sh/docs/test).
In Elysia.js, all the test files are located inside the [`test/`](test/) directory. Unit tests are powered by [bun's test runner](https://bun.sh/docs/test).
🧰 Tools
🪛 LanguageTool

[style] ~21-~21: Consider removing “of” to be more concise
Context: ...n dev ### Unit Testing In Elysia.js, all of the test files are located inside the [tes...

(ALL_OF_THE)

🤖 Prompt for AI Agents
In CONTRIBUTING.md around line 21, fix the grammatical and style issues: change
"In Elysia.js, all of the test files are located inside the [`test/`](test/)
directory. Unit testing are powered by [bun's test
runner](https://bun.sh/docs/test)." to use concise phrasing and correct
agreement — replace "all of the test files" with "all the test files" and "Unit
testing are powered by" with "Unit tests are powered by" (keep the existing link
to bun).


- `bun test` to run all the test inside the [`test/`](test/) directory

Expand Down