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
@@ -156,7 +157,7 @@ to style guidelines. The code has to be formatted by `rustfmt` before a PR will
156
157
157
158
It can be installed via `rustup`:
158
159
```bash
159
-
rustup component add rustfmt-preview
160
+
rustup component add rustfmt
160
161
```
161
162
162
163
Use `cargo fmt --all` to format the whole codebase.
@@ -220,7 +221,7 @@ That's why the `else_if_without_else` example uses the `register_early_lint_pass
220
221
221
222
### Fixing build failures caused by Rust
222
223
223
-
Clippy will sometimes break because it still depends on unstable internal Rust features. Most of the times we have to adapt to the changes and only very rarely there's an actual bug in Rust. Fixing build failures caused by Rust updates, can be a good way to learn about Rust internals.
224
+
Clippy will sometimes fail to build from source because building it depends on unstable internal Rust features. Most of the times we have to adapt to the changes and only very rarely there's an actual bug in Rust. Fixing build failures caused by Rust updates, can be a good way to learn about Rust internals.
224
225
225
226
In order to find out why Clippy does not work properly with a new Rust commit, you can use the [rust-toolstate commit history][toolstate_commit_history].
226
227
You will then have to look for the last commit that contains `test-pass -> build-fail` or `test-pass` -> `test-fail` for the `clippy-driver` component. [Here][toolstate_commit] is an example.
@@ -257,6 +258,17 @@ Our highest priority is fixing [crashes][l-crash] and [bugs][l-bug]. We don't
257
258
want Clippy to crash on your code and we want it to be as reliable as the
258
259
suggestions from Rust compiler errors.
259
260
261
+
## Bors and Homu
262
+
263
+
We use a bot powered by [Homu][homu] to help automate testing and landing of pull
264
+
requests in Clippy. The bot's username is @bors.
265
+
266
+
You can find the Clippy bors queue [here][homu_queue].
267
+
268
+
If you have @bors permissions, you can find an overview of the available
269
+
commands [here][homu_instructions].
270
+
271
+
260
272
## Contributions
261
273
262
274
Contributions to Clippy should be made in the form of GitHub pull requests. Each pull request will
@@ -288,3 +300,6 @@ or the [MIT](http://opensource.org/licenses/MIT) license.
0 commit comments