pub struct LintOptions {
pub skip_rules: Vec<String>,
pub only_rules: Vec<String>,
pub min_severity: Severity,
pub check_dockerignore: bool,
}Fields§
§skip_rules: Vec<String>§only_rules: Vec<String>When non-empty, only rules whose IDs appear in this list are run.
min_severity: Severity§check_dockerignore: boolAuto Trait Implementations§
impl Freeze for LintOptions
impl RefUnwindSafe for LintOptions
impl Send for LintOptions
impl Sync for LintOptions
impl Unpin for LintOptions
impl UnsafeUnpin for LintOptions
impl UnwindSafe for LintOptions
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