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
````
missed another one in the README
run "util/dev update_lints"
rust-lang-nursery/rust-clippy => rust-lang/rust-clippy
Address 'clippy::single-match' dogfood lint
Fix nit
Address travis CI lint failure
Update trivially_copy_pass_by_ref with Trait stderr output
issue#3318 run trivially_copy_pass_by_ref for traits
Update trivially_copy_pass_by_ref with Trait examples
Fix awkward wording
Document how to lint local Clippy changes with locally built Clippy
Enable rustup clippy to refer to the correct documentation
rustup rust-lang/rust#52591
remove unused allow() attributes, NFC
Add regression test
Don't emit suggestion when inside of a macro
````
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+23-11Lines changed: 23 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,27 +35,27 @@ High level approach:
35
35
36
36
All issues on Clippy are mentored, if you want help with a bug just ask @Manishearth, @llogiq, @mcarton or @oli-obk.
37
37
38
-
Some issues are easier than others. The [`good first issue`](https://github.com/rust-lang-nursery/rust-clippy/labels/good%20first%20issue)
38
+
Some issues are easier than others. The [`good first issue`](https://github.com/rust-lang/rust-clippy/labels/good%20first%20issue)
39
39
label can be used to find the easy issues. If you want to work on an issue, please leave a comment
matching of the syntax tree structure, and are generally easier than
44
-
[`T-middle`](https://github.com/rust-lang-nursery/rust-clippy/labels/T-middle) issues, which involve types
44
+
[`T-middle`](https://github.com/rust-lang/rust-clippy/labels/T-middle) issues, which involve types
45
45
and resolved paths.
46
46
47
-
[`T-AST`](https://github.com/rust-lang-nursery/rust-clippy/labels/T-AST) issues will generally need you to match against a predefined syntax structure. To figure out
47
+
[`T-AST`](https://github.com/rust-lang/rust-clippy/labels/T-AST) issues will generally need you to match against a predefined syntax structure. To figure out
48
48
how this syntax structure is encoded in the AST, it is recommended to run `rustc -Z ast-json` on an
49
49
example of the structure and compare with the
50
50
[nodes in the AST docs](https://doc.rust-lang.org/nightly/nightly-rustc/syntax/ast). Usually
51
51
the lint will end up to be a nested series of matches and ifs,
Clippy is a [rustc compiler plugin][compiler_plugin]. The main entry point is at [`src/lib.rs`][main_entry]. In there, the lint registration is delegated to the [`clippy_lints`][lint_crate] crate.
@@ -237,10 +249,10 @@ All code in this repository is under the [Mozilla Public License, 2.0](https://w
237
249
238
250
<!-- adapted from https://github.com/servo/servo/blob/master/CONTRIBUTING.md -->
See the [list of lints](https://rust-lang-nursery.github.io/rust-clippy/master/index.html) for more information about which lints can be configured and the
120
+
See the [list of lints](https://rust-lang.github.io/rust-clippy/master/index.html) for more information about which lints can be configured and the
121
121
meaning of the variables.
122
122
123
123
To deactivate the “for further information visit *lint-link*” message you can
0 commit comments