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 3232 matchManagers : [
3333 'custom.regex' ,
3434 ] ,
35- matchPackageNames : [
35+ matchDepNames : [
3636 'STABLE' ,
3737 ] ,
3838 extractVersion : '^(?<version>\\d+\\.\\d+)' , // Drop the patch version
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ jobs:
148148 run : cargo install sarif-fmt --locked
149149 - name : Check
150150 run : >
151- cargo clippy --workspace --all-features --all-targets --message-format=json -- -D warnings --allow deprecated
151+ cargo clippy --workspace --all-features --all-targets --message-format=json
152152 | clippy-sarif
153153 | tee clippy-results.sarif
154154 | sarif-fmt
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ Specifically, we would encourage
4949- File renames be isolated into their own commit
5050- Add tests in a commit before their feature or fix, showing the current behavior.
5151 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
5353 test is verifying the expected state.
5454 - e.g. [ clap #5520 ] ( https://github.com/clap-rs/clap/pull/5520 )
5555
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ rc_mutex = "warn"
7070redundant_feature_names = " warn"
7171ref_option_ref = " warn"
7272rest_pat_in_fully_bound_structs = " warn"
73+ result_large_err = " allow"
7374same_functions_in_if_condition = " warn"
7475self_named_module_files = " warn"
7576semicolon_if_nothing_returned = " warn"
@@ -102,7 +103,7 @@ include.workspace = true
102103
103104[package .metadata .docs .rs ]
104105all-features = true
105- rustdoc-args = [" --cfg" , " docsrs" ]
106+ rustdoc-args = [" --cfg" , " docsrs" , " --generate-link-to-definition " ]
106107
107108[package .metadata .release ]
108109pre-release-replacements = [
You can’t perform that action at this time.
0 commit comments