shuck-linter 0.0.43

Lint rule engine and checker for shell scripts
Documentation
mod directive;
mod index;
mod rewrite;
mod shellcheck_map;

pub 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, add_ignores_to_path_with_resolvers,
    build_ignore_edit_for_line,
};
pub use shellcheck_map::ShellCheckCodeMap;