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: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -106,8 +106,8 @@ script:
106
106
# etc.
107
107
```
108
108
109
-
It might happen that clippy is not available for a certain nightly release.
110
-
In this case you can try to conditionally install clippy from the git repo.
109
+
It might happen that Clippy is not available for a certain nightly release.
110
+
In this case you can try to conditionally install Clippy from the git repo.
111
111
112
112
```yaml
113
113
language: rust
@@ -149,7 +149,7 @@ You can add options to your code to `allow`/`warn`/`deny` Clippy lints:
149
149
150
150
Note: `deny` produces errors instead of warnings.
151
151
152
-
If you do not want to include your lint levels in your code, you can globally enable/disable lints by passing extra flags to clippy during the run: `cargo clippy -- -A clippy::lint_name` will run clippy with `lint_name` disabled and `cargo clippy -- -W clippy::lint_name` will run it with that enabled. This also works with lint groups. For example you can run Clippy with warnings for all lints enabled: `cargo clippy -- -W clippy::pedantic`
152
+
If you do not want to include your lint levels in your code, you can globally enable/disable lints by passing extra flags to Clippy during the run: `cargo clippy -- -A clippy::lint_name` will run Clippy with `lint_name` disabled and `cargo clippy -- -W clippy::lint_name` will run it with that enabled. This also works with lint groups. For example you can run Clippy with warnings for all lints enabled: `cargo clippy -- -W clippy::pedantic`
0 commit comments