Skip to content

Commit 0b3644e

Browse files
Rollup merge of #98848 - flip1995:clippy-book, r=jyn514
Build the Clippy book as part of x.py doc r? ``@ehuss`` since you said you would be interested in helping moving this forward. cc ``@jyn514`` as part of the bootstrap team.
2 parents 3dfb224 + 665d707 commit 0b3644e

File tree

8 files changed

+28
-19
lines changed

8 files changed

+28
-19
lines changed

src/bootstrap/builder.rs

+1
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,7 @@ impl<'a> Builder<'a> {
697697
doc::RustcBook,
698698
doc::CargoBook,
699699
doc::Clippy,
700+
doc::ClippyBook,
700701
doc::Miri,
701702
doc::EmbeddedBook,
702703
doc::EditionGuide,

src/bootstrap/doc.rs

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ macro_rules! book {
7474
// and checking against it?).
7575
book!(
7676
CargoBook, "src/tools/cargo/src/doc", "cargo", submodule = "src/tools/cargo";
77+
ClippyBook, "src/tools/clippy/book", "clippy";
7778
EditionGuide, "src/doc/edition-guide", "edition-guide", submodule;
7879
EmbeddedBook, "src/doc/embedded-book", "embedded-book", submodule;
7980
Nomicon, "src/doc/nomicon", "nomicon", submodule;

src/doc/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ accomplishing various tasks.
9393

9494
[The Rustdoc Book](rustdoc/index.html) describes our documentation tool, `rustdoc`.
9595

96+
## The Clippy Book
97+
98+
[The Clippy Book](clippy/index.html) describes our static analyzer, Clippy.
99+
96100
## Extended Error Listing
97101

98102
Many of Rust's errors come with error codes, and you can request extended

src/tools/clippy/book/src/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Clippy
22

33
[![Clippy Test](https://github.com/rust-lang/rust-clippy/workflows/Clippy%20Test/badge.svg?branch=auto&event=push)](https://github.com/rust-lang/rust-clippy/actions?query=workflow%3A%22Clippy+Test%22+event%3Apush+branch%3Aauto)
4-
[![License: MIT OR Apache-2.0](https://img.shields.io/crates/l/clippy.svg)](#license)
4+
[![License: MIT OR Apache-2.0](https://img.shields.io/crates/l/clippy.svg)](https://github.com/rust-lang/rust-clippy#license)
55

66
A collection of lints to catch common mistakes and improve your
77
[Rust](https://github.com/rust-lang/rust) code.

src/tools/clippy/book/src/development/adding_lints.md

+18-15
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ because that's clearly a non-descriptive name.
1313
- [Testing](#testing)
1414
- [Cargo lints](#cargo-lints)
1515
- [Rustfix tests](#rustfix-tests)
16-
- [Edition 2018 tests](#edition-2018-tests)
1716
- [Testing manually](#testing-manually)
1817
- [Lint declaration](#lint-declaration)
1918
- [Lint registration](#lint-registration)
@@ -402,9 +401,8 @@ need to ensure that the MSRV configured for the project is >= the MSRV of the
402401
required Rust feature. If multiple features are required, just use the one with
403402
a lower MSRV.
404403

405-
First, add an MSRV alias for the required feature in
406-
[`clippy_utils::msrvs`](/clippy_utils/src/msrvs.rs). This can be accessed later
407-
as `msrvs::STR_STRIP_PREFIX`, for example.
404+
First, add an MSRV alias for the required feature in [`clippy_utils::msrvs`].
405+
This can be accessed later as `msrvs::STR_STRIP_PREFIX`, for example.
408406

409407
```rust
410408
msrv_aliases! {
@@ -468,6 +466,8 @@ define_Conf! {
468466
}
469467
```
470468

469+
[`clippy_utils::msrvs`]: https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/msrvs/index.html
470+
471471
## Author lint
472472

473473
If you have trouble implementing your lint, there is also the internal `author`
@@ -583,8 +583,7 @@ the workspace directory. Adding a configuration to a lint can be useful for
583583
thresholds or to constrain some behavior that can be seen as a false positive
584584
for some users. Adding a configuration is done in the following steps:
585585

586-
1. Adding a new configuration entry to
587-
[clippy_lints::utils::conf](/clippy_lints/src/utils/conf.rs) like this:
586+
1. Adding a new configuration entry to [`clippy_lints::utils::conf`] like this:
588587

589588
```rust
590589
/// Lint: LINT_NAME.
@@ -635,9 +634,9 @@ for some users. Adding a configuration is done in the following steps:
635634
```
636635
3. Passing the configuration value to the lint impl struct:
637636

638-
First find the struct construction in the [clippy_lints lib
639-
file](/clippy_lints/src/lib.rs). The configuration value is now cloned or
640-
copied into a local value that is then passed to the impl struct like this:
637+
First find the struct construction in the [`clippy_lints` lib file]. The
638+
configuration value is now cloned or copied into a local value that is then
639+
passed to the impl struct like this:
641640

642641
```rust
643642
// Default generated registration:
@@ -653,12 +652,16 @@ for some users. Adding a configuration is done in the following steps:
653652

654653
4. Adding tests:
655654
1. The default configured value can be tested like any normal lint in
656-
[`tests/ui`](/tests/ui).
657-
2. The configuration itself will be tested separately in
658-
[`tests/ui-toml`](/tests/ui-toml). Simply add a new subfolder with a
659-
fitting name. This folder contains a `clippy.toml` file with the
660-
configuration value and a rust file that should be linted by Clippy. The
661-
test can otherwise be written as usual.
655+
[`tests/ui`].
656+
2. The configuration itself will be tested separately in [`tests/ui-toml`].
657+
Simply add a new subfolder with a fitting name. This folder contains a
658+
`clippy.toml` file with the configuration value and a rust file that
659+
should be linted by Clippy. The test can otherwise be written as usual.
660+
661+
[`clippy_lints::utils::conf`]: https://github.com/rust-lang/rust-clippy/blob/master/clippy_lints/src/utils/conf.rs
662+
[`clippy_lints` lib file]: https://github.com/rust-lang/rust-clippy/blob/master/clippy_lints/src/lib.rs
663+
[`tests/ui`]: https://github.com/rust-lang/rust-clippy/blob/master/tests/ui
664+
[`tests/ui-toml`]: https://github.com/rust-lang/rust-clippy/blob/master/tests/ui-toml
662665

663666
## Cheat Sheet
664667

src/tools/clippy/book/src/development/basics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ cargo dev setup intellij
9898
```
9999

100100
More about intellij command usage and reasons
101-
[here](../CONTRIBUTING.md#intellij-rust)
101+
[here](https://github.com/rust-lang/rust-clippy/blob/master/CONTRIBUTING.md#intellij-rust)
102102

103103
## lintcheck
104104

src/tools/clippy/book/src/development/common_tools_writing_lints.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,4 +276,4 @@ functions to deal with macros:
276276
[LateContext]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lint/struct.LateContext.html
277277
[TyCtxt]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/context/struct.TyCtxt.html
278278
[pat_ty]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/context/struct.TypeckResults.html#method.pat_ty
279-
[paths]: ../clippy_utils/src/paths.rs
279+
[paths]: https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/paths/index.html

src/tools/clippy/book/src/usage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,4 @@ clippy-driver --edition 2018 -Cpanic=abort foo.rs
148148
> that are not optimized as expected, for example.
149149
150150
[Installation]: installation.md
151-
[CI]: continuous_integration
151+
[CI]: continuous_integration/index.md

0 commit comments

Comments
 (0)