@@ -6,16 +6,16 @@ Hello fellow Rustacean! Great to see your interest in compiler internals and lin
6
6
7
7
All issues on Clippy are mentored, if you want help with a bug just ask @Manishearth or @llogiq .
8
8
9
- Some issues are easier than others. The [ E-easy] ( https://github.com/Manishearth /rust-clippy/labels/E-easy )
9
+ Some issues are easier than others. The [ E-easy] ( https://github.com/rust-lang-nursery /rust-clippy/labels/E-easy )
10
10
label can be used to find the easy issues. If you want to work on an issue, please leave a comment
11
11
so that we can assign it to you!
12
12
13
- Issues marked [ T-AST] ( https://github.com/Manishearth /rust-clippy/labels/T-AST ) involve simple
13
+ Issues marked [ T-AST] ( https://github.com/rust-lang-nursery /rust-clippy/labels/T-AST ) involve simple
14
14
matching of the syntax tree structure, and are generally easier than
15
- [ T-middle] ( https://github.com/Manishearth /rust-clippy/labels/T-middle ) issues, which involve types
15
+ [ T-middle] ( https://github.com/rust-lang-nursery /rust-clippy/labels/T-middle ) issues, which involve types
16
16
and resolved paths.
17
17
18
- Issues marked [ E-medium] ( https://github.com/Manishearth /rust-clippy/labels/E-medium ) are generally
18
+ Issues marked [ E-medium] ( https://github.com/rust-lang-nursery /rust-clippy/labels/E-medium ) are generally
19
19
pretty easy too, though it's recommended you work on an E-easy issue first.
20
20
21
21
[ Llogiq's blog post on lints] ( https://llogiq.github.io/2015/06/04/workflows.html ) is a nice primer
@@ -28,7 +28,7 @@ how this syntax structure is encoded in the AST, it is recommended to run `rustc
28
28
example of the structure and compare with the
29
29
[ nodes in the AST docs] ( http://manishearth.github.io/rust-internals-docs/syntax/ast/ ) . Usually
30
30
the lint will end up to be a nested series of matches and ifs,
31
- [ like so] ( https://github.com/Manishearth /rust-clippy/blob/de5ccdfab68a5e37689f3c950ed1532ba9d652a0/src/misc.rs#L34 ) .
31
+ [ like so] ( https://github.com/rust-lang-nursery /rust-clippy/blob/de5ccdfab68a5e37689f3c950ed1532ba9d652a0/src/misc.rs#L34 ) .
32
32
33
33
T-middle issues can be more involved and require verifying types. The
34
34
[ ` ty ` ] ( http://manishearth.github.io/rust-internals-docs/rustc/ty ) module contains a
0 commit comments