@@ -15,16 +15,16 @@ High level approach:
15
15
16
16
All issues on Clippy are mentored, if you want help with a bug just ask @Manishearth , @llogiq , @mcarton or @oli-obk .
17
17
18
- Some issues are easier than others. The [ E-easy] ( https://github.com/Manishearth /rust-clippy/labels/E-easy )
18
+ Some issues are easier than others. The [ E-easy] ( https://github.com/rust-lang-nursery /rust-clippy/labels/E-easy )
19
19
label can be used to find the easy issues. If you want to work on an issue, please leave a comment
20
20
so that we can assign it to you!
21
21
22
- Issues marked [ T-AST] ( https://github.com/Manishearth /rust-clippy/labels/T-AST ) involve simple
22
+ Issues marked [ T-AST] ( https://github.com/rust-lang-nursery /rust-clippy/labels/T-AST ) involve simple
23
23
matching of the syntax tree structure, and are generally easier than
24
- [ T-middle] ( https://github.com/Manishearth /rust-clippy/labels/T-middle ) issues, which involve types
24
+ [ T-middle] ( https://github.com/rust-lang-nursery /rust-clippy/labels/T-middle ) issues, which involve types
25
25
and resolved paths.
26
26
27
- Issues marked [ E-medium] ( https://github.com/Manishearth /rust-clippy/labels/E-medium ) are generally
27
+ Issues marked [ E-medium] ( https://github.com/rust-lang-nursery /rust-clippy/labels/E-medium ) are generally
28
28
pretty easy too, though it's recommended you work on an E-easy issue first. They are mostly classified
29
29
as ` E-medium ` , since they might be somewhat involved code wise, but not difficult per-se.
30
30
@@ -38,7 +38,7 @@ how this syntax structure is encoded in the AST, it is recommended to run `rustc
38
38
example of the structure and compare with the
39
39
[ nodes in the AST docs] ( http://manishearth.github.io/rust-internals-docs/syntax/ast/ ) . Usually
40
40
the lint will end up to be a nested series of matches and ifs,
41
- [ like so] ( https://github.com/Manishearth /rust-clippy/blob/de5ccdfab68a5e37689f3c950ed1532ba9d652a0/src/misc.rs#L34 ) .
41
+ [ like so] ( https://github.com/rust-lang-nursery /rust-clippy/blob/de5ccdfab68a5e37689f3c950ed1532ba9d652a0/src/misc.rs#L34 ) .
42
42
43
43
T-middle issues can be more involved and require verifying types. The
44
44
[ ` ty ` ] ( http://manishearth.github.io/rust-internals-docs/rustc/ty ) module contains a
0 commit comments