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: doc/dev-guide/src/index.md
-5Lines changed: 0 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,6 @@
4
4
2. Create your feature branch: `git checkout -b my-new-feature`
5
5
3. Test it: `cargo test --features=test`
6
6
4.[Lint it!](linting.md)
7
-
8
-
> We use `cargo clippy` to ensure high-quality code and to enforce a set of best practices for Rust programming. However, not all lints provided by `cargo clippy` are relevant or applicable to our project.
9
-
> We may choose to ignore some lints if they are unstable, experimental, or specific to our project.
10
-
> If you are unsure about a lint, please ask us in the [rustup Discord channel](https://discord.com/channels/442252698964721669/463480252723888159).
11
-
12
7
5. Commit your changes: `git commit -am 'Add some feature'`
13
8
6. Push to the branch: `git push origin my-new-feature`
Copy file name to clipboardExpand all lines: doc/dev-guide/src/linting.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
# Linting
2
2
3
+
We use `cargo clippy` to ensure high-quality code and to enforce a set of best practices for Rust programming. However, not all lints provided by `cargo clippy` are relevant or applicable to our project.
4
+
We may choose to ignore some lints if they are unstable, experimental, or specific to our project.
5
+
If you are unsure about a lint, please ask us in the [rustup Discord channel](https://discord.com/channels/442252698964721669/463480252723888159).
6
+
3
7
## Manual linting
4
8
5
9
When checking the codebase with [`clippy`](https://doc.rust-lang.org/stable/clippy/index.html), it is recommended to use:
0 commit comments