mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 02:38:25 +00:00
Re-export ruff_python_semantic
members (#5094)
## Summary This PR adds a more unified public API to `ruff_python_semantic`, so that we don't need to do deeply nested imports all over the place.
This commit is contained in:
parent
a33bbe6335
commit
86ff1febea
69 changed files with 129 additions and 146 deletions
|
@ -1,9 +1,18 @@
|
|||
pub mod analyze;
|
||||
pub mod binding;
|
||||
pub mod context;
|
||||
pub mod definition;
|
||||
pub mod globals;
|
||||
pub mod model;
|
||||
pub mod node;
|
||||
pub mod reference;
|
||||
pub mod scope;
|
||||
mod binding;
|
||||
mod context;
|
||||
mod definition;
|
||||
mod globals;
|
||||
mod model;
|
||||
mod node;
|
||||
mod reference;
|
||||
mod scope;
|
||||
|
||||
pub use binding::*;
|
||||
pub use context::*;
|
||||
pub use definition::*;
|
||||
pub use globals::*;
|
||||
pub use model::*;
|
||||
pub use node::*;
|
||||
pub use reference::*;
|
||||
pub use scope::*;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue