1 2 3 4 5 6 7 8 9
#[macro_use]
extern crate lazy_static;
pub use cmd::lint;
pub use model::{Error, Lint, LintError, Lints, Problem};
mod checks;
mod cmd;
mod model;
1 2 3 4 5 6 7 8 9
#[macro_use]
extern crate lazy_static;
pub use cmd::lint;
pub use model::{Error, Lint, LintError, Lints, Problem};
mod checks;
mod cmd;
mod model;