File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
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 @@ -144,7 +144,7 @@ jobs:
144
144
run : cargo install sarif-fmt --locked
145
145
- name : Check
146
146
run : >
147
- cargo clippy --workspace --all-features --all-targets --message-format=json -- -D warnings --allow deprecated
147
+ cargo clippy --workspace --all-features --all-targets --message-format=json
148
148
| clippy-sarif
149
149
| tee clippy-results.sarif
150
150
| sarif-fmt
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ rc_mutex = "warn"
70
70
redundant_feature_names = " warn"
71
71
ref_option_ref = " warn"
72
72
rest_pat_in_fully_bound_structs = " warn"
73
+ result_large_err = " allow"
73
74
same_functions_in_if_condition = " warn"
74
75
self_named_module_files = " warn"
75
76
semicolon_if_nothing_returned = " warn"
@@ -99,7 +100,7 @@ include.workspace = true
99
100
100
101
[package .metadata .docs .rs ]
101
102
all-features = true
102
- rustdoc-args = [" --cfg" , " docsrs" ]
103
+ rustdoc-args = [" --cfg" , " docsrs" , " --generate-link-to-definition " ]
103
104
104
105
[package .metadata .release ]
105
106
tag-name = " {{version}}"
You can’t perform that action at this time.
0 commit comments