pub enum Difficulty {
Easy,
Normal,
Hard,
Painful,
}Expand description
Controls which rules fire. Rules at or below the configured difficulty are reported; rules above are silently suppressed.
Ordered: Easy < Normal < Hard < Painful.
Variants§
Easy
Definite breakage only: invalid JSON, missing shebang, empty files, credential exposure.
Normal
Common anti-patterns with clear fixes: naive string matching on raw stdin, missing JSON parsing in hooks.
Hard
Breakage + operational problems: hook leaks, dangerous settings, missing required fields.
Painful
Everything: best-practice style, stale allows, broad permissions, naive patterns.
Trait Implementations§
Source§impl Clone for Difficulty
impl Clone for Difficulty
Source§fn clone(&self) -> Difficulty
fn clone(&self) -> Difficulty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Difficulty
impl Debug for Difficulty
Source§impl Default for Difficulty
impl Default for Difficulty
Source§fn default() -> Difficulty
fn default() -> Difficulty
Returns the “default value” for a type. Read more
Source§impl Display for Difficulty
impl Display for Difficulty
Source§impl FromStr for Difficulty
impl FromStr for Difficulty
Source§impl Ord for Difficulty
impl Ord for Difficulty
Source§fn cmp(&self, other: &Difficulty) -> Ordering
fn cmp(&self, other: &Difficulty) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Difficulty
impl PartialEq for Difficulty
Source§fn eq(&self, other: &Difficulty) -> bool
fn eq(&self, other: &Difficulty) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for Difficulty
impl PartialOrd for Difficulty
impl Copy for Difficulty
impl Eq for Difficulty
impl StructuralPartialEq for Difficulty
Auto Trait Implementations§
impl Freeze for Difficulty
impl RefUnwindSafe for Difficulty
impl Send for Difficulty
impl Sync for Difficulty
impl Unpin for Difficulty
impl UnsafeUnpin for Difficulty
impl UnwindSafe for Difficulty
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