note[ImportSort]: imports are not sorted lexicographically ┌─ tests/lints/within-import-whitespace/source.wdl:9:1 │ 9 │ import "bar" # BAD (2 spaces) │ ^^^^^^^^^^^^^ │ = fix: sort the imports lexicographically note[ImportWhitespace]: improper whitespace in import statement ┌─ tests/lints/within-import-whitespace/source.wdl:9:7 │ 9 │ import "bar" # BAD (2 spaces) │ ^^ this should be a singular space (` `) │ = fix: use minimal whitespace within import statements note[ImportWhitespace]: improper whitespace in import statement ┌─ tests/lints/within-import-whitespace/source.wdl:10:7 │ 10 │ import "baz" # BAD (tab literal) │ ^^ this should be a singular space (` `) │ = fix: use minimal whitespace within import statements note[ImportWhitespace]: improper whitespace in import statement ┌─ tests/lints/within-import-whitespace/source.wdl:11:14 │ 11 │ import "chuk" as something # BAD (many spaces) │ ^^^^^^^^ this should be a singular space (` `) │ = fix: use minimal whitespace within import statements note[ImportWhitespace]: improper whitespace in import statement ┌─ tests/lints/within-import-whitespace/source.wdl:12:18 │ 12 │ import "lorem" as ipsum # BAD (space and tab) │ ^^^ this should be a singular space (` `) │ = fix: use minimal whitespace within import statements note[ImportWhitespace]: improper whitespace in import statement ┌─ tests/lints/within-import-whitespace/source.wdl:13:7 │ 13 │ import "qux" alias jabber as quux # really BAD │ ^^^ this should be a singular space (` `) │ = fix: use minimal whitespace within import statements note[ImportWhitespace]: improper whitespace in import statement ┌─ tests/lints/within-import-whitespace/source.wdl:13:15 │ 13 │ import "qux" alias jabber as quux # really BAD │ ^^ this should be a singular space (` `) │ = fix: use minimal whitespace within import statements note[ImportWhitespace]: improper whitespace in import statement ┌─ tests/lints/within-import-whitespace/source.wdl:14:7 │ 14 │ import # BAD (comment within statement) │ ^^ this should be a singular space (` `) │ = fix: use minimal whitespace within import statements note[ImportSort]: comments are not allowed within an import statement ┌─ tests/lints/within-import-whitespace/source.wdl:14:9 │ 14 │ import # BAD (comment within statement) │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ │ = fix: remove the comment from the import statement