masmlint 0.1.1

A linter for Miden Assembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate alloc;

mod errors;
pub use errors::{LintError, LinterError};

pub mod lints;

mod lint_selector;
pub use lint_selector::LintSelector;

mod linter;
pub use linter::{EarlyContext, EarlyLintPass, Linter};