malva 0.16.0

Configurable, smart and fast CSS, SCSS, Sass and Less formatter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Clone)]
pub(crate) struct State {
    pub(crate) keep_decl_name_case: bool,
    pub(crate) selector_override: SelectorOverride,
}

#[derive(Clone)]
pub(crate) enum SelectorOverride {
    Unset,
    Ignore,
    Always,
    Consistent,
    Wrap,
}