File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tests/ui-toml/conf_deprecated_key Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ define_Conf! {
102
102
/// Lint: COGNITIVE_COMPLEXITY. The maximum cognitive complexity a function can have
103
103
( cognitive_complexity_threshold: u64 = 25 ) ,
104
104
/// DEPRECATED LINT: CYCLOMATIC_COMPLEXITY. Use the Cognitive Complexity lint instead.
105
- #[ conf_deprecated( "Please use `cognitive-complexity-threshold` instead. " ) ]
105
+ #[ conf_deprecated( "Please use `cognitive-complexity-threshold` instead" ) ]
106
106
( cyclomatic_complexity_threshold: Option <u64 >) ,
107
107
/// Lint: DOC_MARKDOWN. The list of words this lint should not consider as identifiers needing ticks
108
108
( doc_valid_idents: Vec <String > = [
Original file line number Diff line number Diff line change 1
- error: error reading Clippy's configuration file `$DIR/clippy.toml`: deprecated field `cyclomatic-complexity-threshold`. Please use `cognitive-complexity-threshold` instead.
1
+ error: error reading Clippy's configuration file `$DIR/clippy.toml`: deprecated field `cyclomatic-complexity-threshold`. Please use `cognitive-complexity-threshold` instead
2
2
3
3
error: aborting due to previous error
4
4
You can’t perform that action at this time.
0 commit comments