mirror of
				https://github.com/astral-sh/ruff.git
				synced 2025-11-03 21:23:45 +00:00 
			
		
		
		
	## Summary This PR adds the `--preview` and `--no-preview` options to the `format` command (hidden) and passes it through to the formatte. ## Test Plan I added the `dbg(f.options().preview())` statement in `FormatNodeRule::fmt` and verified that the option gets correctly passed to the formatter.
		
			
				
	
	
		
			53 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "ruff_python_formatter"
 | 
						|
version = "0.0.0"
 | 
						|
publish = false
 | 
						|
authors = { workspace = true }
 | 
						|
edition = { workspace = true }
 | 
						|
rust-version = { workspace = true }
 | 
						|
homepage = { workspace = true }
 | 
						|
documentation = { workspace = true }
 | 
						|
repository = { workspace = true }
 | 
						|
license = { workspace = true }
 | 
						|
 | 
						|
[dependencies]
 | 
						|
ruff_formatter = { path = "../ruff_formatter" }
 | 
						|
ruff_python_trivia = { path = "../ruff_python_trivia" }
 | 
						|
ruff_source_file = { path = "../ruff_source_file" }
 | 
						|
ruff_python_ast = { path = "../ruff_python_ast" }
 | 
						|
ruff_python_index = { path = "../ruff_python_index" }
 | 
						|
ruff_python_parser = { path = "../ruff_python_parser" }
 | 
						|
ruff_text_size = { path = "../ruff_text_size" }
 | 
						|
 | 
						|
anyhow = { workspace = true }
 | 
						|
bitflags = { workspace = true }
 | 
						|
clap = { workspace = true }
 | 
						|
countme = "3.0.1"
 | 
						|
itertools = { workspace = true }
 | 
						|
memchr = { workspace = true }
 | 
						|
once_cell = { workspace = true }
 | 
						|
rustc-hash = { workspace = true }
 | 
						|
serde = { workspace = true, optional = true }
 | 
						|
smallvec = { workspace = true }
 | 
						|
static_assertions = { workspace = true }
 | 
						|
thiserror = { workspace = true }
 | 
						|
tracing = { workspace = true }
 | 
						|
unicode-width = { workspace = true }
 | 
						|
 | 
						|
[dev-dependencies]
 | 
						|
ruff_formatter = { path = "../ruff_formatter", features = ["serde"] }
 | 
						|
 | 
						|
insta = { workspace = true, features = ["glob"] }
 | 
						|
serde = { workspace = true }
 | 
						|
serde_json = { workspace = true }
 | 
						|
similar = { workspace = true }
 | 
						|
 | 
						|
[[test]]
 | 
						|
name = "ruff_python_formatter_fixtures"
 | 
						|
path = "tests/fixtures.rs"
 | 
						|
test = true
 | 
						|
required-features = ["serde"]
 | 
						|
 | 
						|
[features]
 | 
						|
serde = ["dep:serde", "ruff_formatter/serde", "ruff_source_file/serde", "ruff_python_ast/serde"]
 | 
						|
default = ["serde"]
 |