mirror of
https://github.com/astral-sh/ruff
synced 2026-01-22 14:00:51 -05:00
Technically the command-line interface (CLI) encompasses both input and output, so naming the input structs 'Args' is more accurate than 'Cli'.
68 lines
1.9 KiB
Rust
68 lines
1.9 KiB
Rust
//! Utility to generate Ruff's `pyproject.toml` section from a Flake8 INI file.
|
|
#![forbid(unsafe_code)]
|
|
#![warn(clippy::pedantic)]
|
|
#![allow(
|
|
clippy::collapsible_else_if,
|
|
clippy::collapsible_if,
|
|
clippy::implicit_hasher,
|
|
clippy::match_same_arms,
|
|
clippy::missing_errors_doc,
|
|
clippy::missing_panics_doc,
|
|
clippy::module_name_repetitions,
|
|
clippy::must_use_candidate,
|
|
clippy::similar_names,
|
|
clippy::too_many_lines
|
|
)]
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use anyhow::Result;
|
|
use clap::Parser;
|
|
use configparser::ini::Ini;
|
|
use ruff::flake8_to_ruff::{self, ExternalConfig};
|
|
|
|
#[derive(Parser)]
|
|
#[command(
|
|
about = "Convert existing Flake8 configuration to Ruff.",
|
|
long_about = None
|
|
)]
|
|
struct Args {
|
|
/// Path to the Flake8 configuration file (e.g., `setup.cfg`, `tox.ini`, or
|
|
/// `.flake8`).
|
|
#[arg(required = true)]
|
|
file: PathBuf,
|
|
/// Optional path to a `pyproject.toml` file, used to ensure compatibility
|
|
/// with Black.
|
|
#[arg(long)]
|
|
pyproject: Option<PathBuf>,
|
|
/// List of plugins to enable.
|
|
#[arg(long, value_delimiter = ',')]
|
|
plugin: Option<Vec<flake8_to_ruff::Plugin>>,
|
|
}
|
|
|
|
fn main() -> Result<()> {
|
|
let args = Args::parse();
|
|
|
|
// Read the INI file.
|
|
let mut ini = Ini::new_cs();
|
|
ini.set_multiline(true);
|
|
let config = ini.load(args.file).map_err(|msg| anyhow::anyhow!(msg))?;
|
|
|
|
// Read the pyproject.toml file.
|
|
let pyproject = args.pyproject.map(flake8_to_ruff::parse).transpose()?;
|
|
let external_config = pyproject
|
|
.as_ref()
|
|
.and_then(|pyproject| pyproject.tool.as_ref())
|
|
.map(|tool| ExternalConfig {
|
|
black: tool.black.as_ref(),
|
|
isort: tool.isort.as_ref(),
|
|
})
|
|
.unwrap_or_default();
|
|
|
|
// Create Ruff's pyproject.toml section.
|
|
let pyproject = flake8_to_ruff::convert(&config, &external_config, args.plugin)?;
|
|
println!("{}", toml::to_string_pretty(&pyproject)?);
|
|
|
|
Ok(())
|
|
}
|