Lints and suggestions for the Nix programming language
1pub mod config;
2pub mod dirs;
3pub mod dump;
4pub mod err;
5pub mod explain;
6pub mod fix;
7pub mod lint;
8pub mod list;
9pub mod session;
10pub mod traits;
11
12mod utils;
13
14use std::collections::HashMap;
15
16use lib::Lint;
17use rnix::SyntaxKind;
18
19pub type LintMap = HashMap<SyntaxKind, Vec<&'static Box<dyn Lint>>>;