[ty] CLI reference (#17978)

This commit is contained in:
Micha Reiser 2025-05-09 14:23:24 +02:00 committed by GitHub
parent 6cd8a49638
commit c1b875799b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 905 additions and 416 deletions

View file

@ -2,6 +2,8 @@
//!
//! Within the ruff repository you can run it with `cargo dev`.
#![allow(clippy::print_stdout, clippy::print_stderr)]
use anyhow::Result;
use clap::{Parser, Subcommand};
use ruff::{args::GlobalConfigArgs, check};
@ -15,6 +17,7 @@ mod generate_docs;
mod generate_json_schema;
mod generate_options;
mod generate_rules_table;
mod generate_ty_cli_reference;
mod generate_ty_options;
mod generate_ty_rules;
mod generate_ty_schema;