This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +29
-2
lines changed
tests/ui-cargo/multiple_config_files Expand file tree Collapse file tree 9 files changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -333,10 +333,10 @@ pub fn lookup_conf_file() -> io::Result<Option<PathBuf>> {
333333 Err ( e) => return Err ( e) ,
334334 Ok ( md) if md. is_dir ( ) => { } ,
335335 Ok ( _) => {
336- // warn if we happen to find two config files
336+ // warn if we happen to find two config files #8323
337337 if let Some ( ref found_config_) = found_config {
338338 eprintln ! (
339- "Warning: found two config files: {} and {}. \n Using the first one! " ,
339+ "Using config file `{}` \n Warning: `{}` will be ignored. " ,
340340 found_config_. display( ) ,
341341 config_file. display( ) ,
342342 ) ;
Original file line number Diff line number Diff line change 1+ [package ]
2+ name = " no_warn"
3+ version = " 0.1.0"
4+ edition = " 2021"
5+
6+ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+ [dependencies ]
Original file line number Diff line number Diff line change 1+ avoid-breaking-exported-api = false
Original file line number Diff line number Diff line change 1+ fn main ( ) {
2+ println ! ( "Hello, world!" ) ;
3+ }
Original file line number Diff line number Diff line change 1+ avoid-breaking-exported-api = false
Original file line number Diff line number Diff line change 1+ [package ]
2+ name = " warn"
3+ version = " 0.1.0"
4+ edition = " 2021"
5+
6+ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+ [dependencies ]
Original file line number Diff line number Diff line change 1+ avoid-breaking-exported-api = false
Original file line number Diff line number Diff line change 1+ fn main ( ) {
2+ println ! ( "Hello, world!" ) ;
3+ }
Original file line number Diff line number Diff line change 1+ Using config file `$SRC_DIR/tests/ui-cargo/multiple_config_files/warn/.clippy.toml`
2+ Warning: `$SRC_DIR/tests/ui-cargo/multiple_config_files/warn/clippy.toml` will be ignored.
You can’t perform that action at this time.
0 commit comments