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: src/tools/clippy/CONTRIBUTING.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -46,11 +46,12 @@ first read the [Basics docs](doc/basics.md).**
46
46
47
47
### Finding something to fix/improve
48
48
49
-
All issues on Clippy are mentored, if you want help with a bug just ask
50
-
@Manishearth, @flip1995, @phansch or @yaahc.
49
+
All issues on Clippy are mentored, if you want help simply ask @Manishearth, @flip1995, @phansch
50
+
or @llogiq directly by mentioning them in the issue or over on [Zulip]. This list may be out of date.
51
+
All currently active mentors can be found [here](https://github.com/rust-lang/highfive/blob/master/highfive/configs/rust-lang/rust-clippy.json#L3)
51
52
52
-
Some issues are easier than others. The [`good-first-issue`] label can be used to find the easy issues.
53
-
If you want to work on an issue, please leave a comment so that we can assign it to you!
53
+
Some issues are easier than others. The [`good-first-issue`] label can be used to find the easy
54
+
issues. You can use `@rustbot claim` to assign the issue to yourself.
54
55
55
56
There are also some abandoned PRs, marked with [`S-inactive-closed`].
56
57
Pretty often these PRs are nearly completed and just need some extra steps
Copy file name to clipboardexpand all lines: src/tools/clippy/clippy_dev/src/ra_setup.rs
+3
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,9 @@ use std::path::{Path, PathBuf};
8
8
// This allows rust analyzer to analyze rustc internals and show proper information inside clippy
9
9
// code. See https://github.com/rust-analyzer/rust-analyzer/issues/3517 and https://github.com/rust-lang/rust-clippy/issues/5514 for details
10
10
11
+
/// # Panics
12
+
///
13
+
/// Panics if `rustc_path` does not lead to a rustc repo or the files could not be read
11
14
pubfnrun(rustc_path:Option<&str>){
12
15
// we can unwrap here because the arg is required by clap
13
16
let rustc_path = PathBuf::from(rustc_path.unwrap());
0 commit comments