File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 32
32
matchManagers : [
33
33
'custom.regex' ,
34
34
] ,
35
- matchPackageNames : [
35
+ matchDepNames : [
36
36
'STABLE' ,
37
37
] ,
38
38
extractVersion : '^(?<version>\\d+\\.\\d+)' , // Drop the patch version
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ jobs:
146
146
run : cargo install sarif-fmt --locked
147
147
- name : Check
148
148
run : >
149
- cargo clippy --workspace --all-features --all-targets --message-format=json -- -D warnings --allow deprecated
149
+ cargo clippy --workspace --all-features --all-targets --message-format=json
150
150
| clippy-sarif
151
151
| tee clippy-results.sarif
152
152
| sarif-fmt
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ Specifically, we would encourage
49
49
- File renames be isolated into their own commit
50
50
- Add tests in a commit before their feature or fix, showing the current behavior.
51
51
The diff for the feature/fix commit will then show how the behavior changed,
52
- making it clearer to reviewrs and the community and showing people that the
52
+ making it clearer to reviewers and the community and showing people that the
53
53
test is verifying the expected state.
54
54
- e.g. [ clap #5520 ] ( https://github.com/clap-rs/clap/pull/5520 )
55
55
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ rc_mutex = "warn"
72
72
redundant_feature_names = " warn"
73
73
ref_option_ref = " warn"
74
74
rest_pat_in_fully_bound_structs = " warn"
75
+ result_large_err = " allow"
75
76
same_functions_in_if_condition = " warn"
76
77
self_named_module_files = " warn"
77
78
semicolon_if_nothing_returned = " warn"
@@ -104,7 +105,7 @@ include.workspace = true
104
105
105
106
[package .metadata .docs .rs ]
106
107
all-features = true
107
- rustdoc-args = [" --cfg" , " docsrs" ]
108
+ rustdoc-args = [" --cfg" , " docsrs" , " --generate-link-to-definition " ]
108
109
109
110
[package .metadata .release ]
110
111
pre-release-replacements = [
You can’t perform that action at this time.
0 commit comments