shuck-linter 0.0.30

Lint rule engine and checker for shell scripts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod directive;
mod index;
mod rewrite;
mod shellcheck_map;

pub(crate) use directive::parse_directives;
pub(crate) use directive::{
    DirectiveAttachmentFacts, DirectiveCommandVisit, filter_attached_directives,
};
pub use directive::{SuppressionAction, SuppressionDirective, SuppressionSource};
pub use index::SuppressionIndex;
pub(crate) use index::{
    first_statement_line, sort_command_spans_for_lookup, statement_suppression_span,
};
pub use rewrite::{AddIgnoreParseError, AddIgnoreResult, add_ignores_to_path};
pub use shellcheck_map::ShellCheckCodeMap;