You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: GEMINI.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,10 +15,10 @@
15
15
16
16
## Coding style
17
17
18
-
- Follow the default Rust style and use `cargo rustfmt` to format code if needed
18
+
- Follow the default Rust style and use `cargo fmt` to reformat code before committing
19
19
- Avoid the use of `unsafe` code where possible
20
20
- Add comments to every function added and ensure comments are up-to-date with any changed code
21
21
- Use short, simple documentation tests where possible
22
22
- Always add tests for new features and ensure all tests pass before committing code
23
23
- Create small logical commits for every change to the project
24
-
- Each commit should have a clear and concise description and tests that run successfully
24
+
- Each commit should have a clear and concise description and tests that run successfully (follow the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) guidelines)
0 commit comments