1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
use crate::ArmaLintError;

mod lint;
pub use lint::Lint;

pub trait Command {
    // (name, description)
    fn register(&self) -> clap::App;
    fn run(&self, _args: &clap::ArgMatches) -> Result<(), ArmaLintError> {
        unimplemented!();
    }
}