mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	As decided in rust-lang/compiler-team#750. Use declarations are currently wildly inconsistent because rustfmt is quite unopinionated about how they should be formatted. The `rustfmt.toml` additions makes rustfmt more opinionated, which avoids the need for any decision when adding new use declarations to a file. This commit only updates `rustfmt.toml` and `compiler/rustc_codegen_cranelift/rustfmt.toml`. The next commit will do the reformatting.
		
			
				
	
	
		
			11 lines
		
	
	
		
			235 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			235 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
ignore = [
 | 
						|
    "example/gen_block_iterate.rs", # uses edition 2024
 | 
						|
]
 | 
						|
 | 
						|
# Matches rustfmt.toml of rustc
 | 
						|
version = "Two"
 | 
						|
use_small_heuristics = "Max"
 | 
						|
merge_derives = false
 | 
						|
group_imports = "StdExternalCrate"
 | 
						|
imports_granularity = "Module"
 |