mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-26 11:59:35 +00:00
Make ruff::{ast, autofix, directives, rustpython_helpers} private
This commit is contained in:
parent
fe7658199d
commit
d77675f30d
1 changed files with 4 additions and 4 deletions
|
@ -20,12 +20,12 @@
|
||||||
|
|
||||||
extern crate core;
|
extern crate core;
|
||||||
|
|
||||||
pub mod ast;
|
mod ast;
|
||||||
pub mod autofix;
|
mod autofix;
|
||||||
pub mod cache;
|
pub mod cache;
|
||||||
mod checkers;
|
mod checkers;
|
||||||
mod cst;
|
mod cst;
|
||||||
pub mod directives;
|
mod directives;
|
||||||
mod doc_lines;
|
mod doc_lines;
|
||||||
mod docstrings;
|
mod docstrings;
|
||||||
pub mod fix;
|
pub mod fix;
|
||||||
|
@ -40,7 +40,7 @@ mod python;
|
||||||
pub mod registry;
|
pub mod registry;
|
||||||
pub mod resolver;
|
pub mod resolver;
|
||||||
mod rules;
|
mod rules;
|
||||||
pub mod rustpython_helpers;
|
mod rustpython_helpers;
|
||||||
pub mod settings;
|
pub mod settings;
|
||||||
pub mod source_code;
|
pub mod source_code;
|
||||||
mod vendor;
|
mod vendor;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue