File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- warn-on-all-wildcard-imports = true
21allow-print-in-tests = true
32allow-expect-in-tests = true
43allow-unwrap-in-tests = true
Original file line number Diff line number Diff line change 77 configMigration : true ,
88 dependencyDashboard : true ,
99 customManagers : [
10- {
11- customType : 'regex' ,
12- fileMatch : [
13- '^rust-toolchain\\.toml$' ,
14- 'Cargo.toml$' ,
15- 'clippy.toml$' ,
16- '\\.clippy.toml$' ,
17- '^\\.github/workflows/ci.yml$' ,
18- '^\\.github/workflows/rust-next.yml$' ,
19- ] ,
20- matchStrings : [
21- 'MSRV.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)' ,
22- '(?<currentValue>\\d+\\.\\d+(\\.\\d+)?).*?MSRV' ,
23- ] ,
24- depNameTemplate : 'MSRV' ,
25- packageNameTemplate : 'rust-lang/rust' ,
26- datasourceTemplate : 'github-releases' ,
27- } ,
2810 {
2911 customType : 'regex' ,
3012 fileMatch : [
4527 } ,
4628 ] ,
4729 packageRules : [
48- {
49- commitMessageTopic : 'MSRV' ,
50- matchManagers : [
51- 'custom.regex' ,
52- ] ,
53- matchPackageNames : [
54- 'MSRV' ,
55- ] ,
56- minimumReleaseAge : '252 days' , // 6 releases * 6 weeks per release * 7 days per week
57- internalChecksFilter : 'strict' ,
58- extractVersion : '^(?<version>\\d+\\.\\d+)' , // Drop the patch version
59- schedule : [
60- '* * * * *' ,
61- ] ,
62- } ,
6330 {
6431 commitMessageTopic : 'Rust Stable' ,
6532 matchManagers : [
7239 schedule : [
7340 '* * * * *' ,
7441 ] ,
42+ automerge : true ,
7543 } ,
7644 {
7745 matchManagers : [
Original file line number Diff line number Diff line change @@ -36,9 +36,6 @@ debug_assert_with_mut_call = "warn"
3636doc_markdown = " warn"
3737empty_enum = " warn"
3838enum_glob_use = " warn"
39- exhaustive_enums = " warn"
40- exhaustive_structs = " warn"
41- exit = " warn"
4239expl_impl_clone_on_copy = " warn"
4340explicit_deref_methods = " warn"
4441explicit_into_iter_loop = " warn"
@@ -55,7 +52,6 @@ inconsistent_struct_constructor = "warn"
5552inefficient_to_string = " warn"
5653infinite_loop = " warn"
5754invalid_upcast_comparisons = " warn"
58- items_after_statements = " warn"
5955large_digit_groups = " warn"
6056large_stack_arrays = " warn"
6157large_types_passed_by_value = " warn"
@@ -86,7 +82,6 @@ string_lit_as_bytes = "warn"
8682string_to_string = " warn"
8783todo = " warn"
8884trait_duplication_in_bounds = " warn"
89- unwrap_used = " warn"
9085verbose_file_reads = " warn"
9186wildcard_imports = " warn"
9287zero_sized_map_values = " warn"
Original file line number Diff line number Diff line change 55//! - completest-nu
66
77#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
8- #![ warn( missing_docs) ]
98#![ warn( clippy:: print_stderr) ]
109#![ warn( clippy:: print_stdout) ]
1110
You can’t perform that action at this time.
0 commit comments