pub struct RulesConfig {
pub severities: HashMap<String, Severity>,
pub fail_on: Severity,
pub min_score: Option<f64>,
pub custom_rules: Vec<CustomRuleConfig>,
pub detect_init_functions: bool,
pub ignore: Vec<IgnoreRuleConfig>,
pub blocked_packages: Vec<String>,
pub allowed_std_packages: Vec<String>,
}Expand description
Rule configuration
Fields§
§severities: HashMap<String, Severity>§fail_on: Severity§min_score: Option<f64>§custom_rules: Vec<CustomRuleConfig>§detect_init_functions: bool§ignore: Vec<IgnoreRuleConfig>§blocked_packages: Vec<String>Package patterns blocked from domain layer (L006).
allowed_std_packages: Vec<String>Standard library packages allowed in domain layer (L006).
Implementations§
Source§impl RulesConfig
impl RulesConfig
Sourcepub fn resolve_severity(
&self,
kind: &ViolationKind,
default: Severity,
) -> Severity
pub fn resolve_severity( &self, kind: &ViolationKind, default: Severity, ) -> Severity
Resolve severity for a violation kind. Precedence: rule ID (e.g. “L001”) > category name (e.g. “layer_boundary”) > default.
Trait Implementations§
Source§impl Clone for RulesConfig
impl Clone for RulesConfig
Source§fn clone(&self) -> RulesConfig
fn clone(&self) -> RulesConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RulesConfig
impl Debug for RulesConfig
Source§impl Default for RulesConfig
impl Default for RulesConfig
Source§impl<'de> Deserialize<'de> for RulesConfig
impl<'de> Deserialize<'de> for RulesConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RulesConfig
impl RefUnwindSafe for RulesConfig
impl Send for RulesConfig
impl Sync for RulesConfig
impl Unpin for RulesConfig
impl UnsafeUnpin for RulesConfig
impl UnwindSafe for RulesConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more