Files
modeling-app/rust/kcl-lib/src/lint/checks/mod.rs
Adam Chalmers 4356885aa2 Bump cargo to 1.88; 2024 edition for kcl-lib (#7618)
This is a big one because the edition changes a fair number of things.
2025-06-26 22:02:54 +00:00

8 lines
245 B
Rust

mod camel_case;
mod default_plane;
mod offset_plane;
pub use camel_case::{Z0001, lint_object_properties, lint_variables};
pub use default_plane::{Z0002, lint_should_be_default_plane};
pub use offset_plane::{Z0003, lint_should_be_offset_plane};