pub static CLANG_FORMAT_STYLE: OnceCell<ClangFormatStyle>
Expand description

The style to use for clang-format, use set to choose your default format

Example

CLANG_FORMAT_STYLE.set(ClangFormatStyle::Mozilla);

assert_eq!(CLANG_FORMAT_STYLE.get().unwrap(), &ClangFormatStyle::Mozilla);