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
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