Function doomdooz_lib::cop::lint::init

source ·
pub fn init()
Examples found in repository?
src/cop.rs (line 19)
15
16
17
18
19
20
21
22
23
pub fn init() {
    INIT.call_once(|| {
        bundler::init();
        layout::init();
        lint::init();
        naming::init();
        style::init();
    });
}