@@ -13,7 +13,6 @@ because that's clearly a non-descriptive name.
13
13
- [ Testing] ( #testing )
14
14
- [ Cargo lints] ( #cargo-lints )
15
15
- [ Rustfix tests] ( #rustfix-tests )
16
- - [ Edition 2018 tests] ( #edition-2018-tests )
17
16
- [ Testing manually] ( #testing-manually )
18
17
- [ Lint declaration] ( #lint-declaration )
19
18
- [ Lint registration] ( #lint-registration )
@@ -402,9 +401,8 @@ need to ensure that the MSRV configured for the project is >= the MSRV of the
402
401
required Rust feature. If multiple features are required, just use the one with
403
402
a lower MSRV.
404
403
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.
408
406
409
407
``` rust
410
408
msrv_aliases! {
@@ -468,6 +466,8 @@ define_Conf! {
468
466
}
469
467
```
470
468
469
+ [ `clippy_utils::msrvs` ] : https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/msrvs/index.html
470
+
471
471
## Author lint
472
472
473
473
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
583
583
thresholds or to constrain some behavior that can be seen as a false positive
584
584
for some users. Adding a configuration is done in the following steps:
585
585
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:
588
587
589
588
``` rust
590
589
/// Lint: LINT_NAME.
@@ -635,9 +634,9 @@ for some users. Adding a configuration is done in the following steps:
635
634
```
636
635
3 . Passing the configuration value to the lint impl struct :
637
636
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 :
641
640
642
641
```rust
643
642
// Default generated registration:
@@ -653,12 +652,16 @@ for some users. Adding a configuration is done in the following steps:
653
652
654
653
4 . Adding tests:
655
654
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
662
665
663
666
## Cheat Sheet
664
667
0 commit comments