
As a part of https://github.com/zed-industries/zed/pull/17488 I flattened module structure of ui crate to fix module_inception lint. However, that's actually unnecessary as we can pass that lint via a custom knob for clippy. Closes #ISSUE Release Notes: - N/A
11 lines
202 B
Rust
11 lines
202 B
Rust
mod list;
|
|
mod list_header;
|
|
mod list_item;
|
|
mod list_separator;
|
|
mod list_sub_header;
|
|
|
|
pub use list::*;
|
|
pub use list_header::*;
|
|
pub use list_item::*;
|
|
pub use list_separator::*;
|
|
pub use list_sub_header::*;
|