wdl-analysis 0.22.0

Analysis of Workflow Description Language (WDL) documents.
Documentation
## This is a test of using a hint section in a 1.2 document
## There should be no diagnostics emitted.

version 1.3

task foo {
    input {
        String a
    }

    command <<<>>>

    hints {
        inputs: input {
            a: hints {
                foo: "bar",
            },
        }
    }
}

workflow bar {

    hints {
        allow_nested_inputs: true
    }
}