vize_carton 0.152.0

Carton - The artist's toolbox for Vize compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Shared Vize configuration loading.

mod loader;
mod model;

pub use loader::{
    LoadedConfig, LoadedConfigWithFeatures, load_config,
    load_config_and_linter_with_features_and_source, load_config_and_linter_with_source,
    load_config_with_features_and_source, load_config_with_source, load_linter_config,
};
pub use model::{
    ArrowParens, AttributeSortOrder, ConfigFeatureFlags, EndOfLine, FormatterConfig,
    GlobalTypeDeclaration, GlobalTypesConfig, LanguageServerConfig, LintRuleSeverity, LinterConfig,
    LspConfig, QuoteProps, TrailingComma, TypeCheckerConfig, VizeConfig,
};