wdl-lint 0.16.0

Lint rules for Workflow Description Language (WDL) documents
Documentation
//! Module for the lint rules.

mod call_input_spacing;
mod command_section_indentation;
mod comment_whitespace;
mod concise_input;
mod consistent_newlines;
mod container_uri;
mod declaration_name;
mod deprecated_object;
mod deprecated_placeholder;
mod double_quotes;
mod element_spacing;
mod ending_newline;
mod expected_runtime_keys;
mod expression_spacing;
mod heredoc_commands;
mod import_placement;
mod import_sorted;
mod import_whitespace;
mod input_name;
mod input_sorted;
mod known_rules;
mod line_width;
mod lint_directive_formatted;
mod lint_directive_valid;
mod matching_output_meta;
mod meta_description;
mod meta_key_value_formatting;
mod meta_sections;
mod output_name;
mod parameter_meta_matched;
mod pascal_case;
mod preamble_comment_placement;
mod preamble_formatted;
mod redundant_none;
mod requirements_section;
mod runtime_section;
mod section_order;
mod shellcheck;
mod snake_case;
mod todo_comment;
mod trailing_comma;
mod version_statement_formatted;
mod whitespace;

pub use call_input_spacing::*;
pub use command_section_indentation::*;
pub use comment_whitespace::*;
pub use concise_input::*;
pub use consistent_newlines::*;
pub use container_uri::*;
pub use declaration_name::*;
pub use deprecated_object::*;
pub use deprecated_placeholder::*;
pub use double_quotes::*;
pub use element_spacing::*;
pub use ending_newline::*;
pub use expected_runtime_keys::*;
pub use expression_spacing::*;
pub use heredoc_commands::*;
pub use import_placement::*;
pub use import_sorted::*;
pub use import_whitespace::*;
pub use input_name::*;
pub use input_sorted::*;
pub use known_rules::*;
pub use line_width::*;
pub use lint_directive_formatted::*;
pub use lint_directive_valid::*;
pub use matching_output_meta::*;
pub use meta_description::*;
pub use meta_key_value_formatting::*;
pub use meta_sections::*;
pub use output_name::*;
pub use parameter_meta_matched::*;
pub use pascal_case::*;
pub use preamble_comment_placement::*;
pub use preamble_formatted::*;
pub use redundant_none::*;
pub use requirements_section::*;
pub use runtime_section::*;
pub use section_order::*;
pub use shellcheck::*;
pub use snake_case::*;
pub use todo_comment::*;
pub use trailing_comma::*;
pub use version_statement_formatted::*;
pub use whitespace::*;