-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2da59bc
commit 26a6448
Showing
6 changed files
with
105 additions
and
905 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
note[LineWidth]: line exceeds maximum width of 90 | ||
┌─ tests/lints/line-width/source.wdl:12:2 | ||
│ | ||
12 │ this is going to be a really long line that is almost certainly going to be longer than the maximum line length I would hope / | ||
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
│ | ||
= fix: split the line into multiple lines | ||
|
||
note[LineWidth]: line exceeds maximum width of 90 | ||
┌─ tests/lints/line-width/source.wdl:14:2 | ||
│ | ||
14 │ this line is also going to be very very very long just to trip up our maximum line lint / | ||
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
│ | ||
= fix: split the line into multiple lines | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#@ except: DescriptionMissing, RuntimeSectionKeys | ||
version 1.1 | ||
|
||
task task_a { | ||
meta {} | ||
parameter_meta {} | ||
input {} | ||
|
||
command <<< | ||
bin \ | ||
this is going to be a really long line that is almost certainly going to be longer than the maximum line length I would hope \ | ||
some other \ | ||
this line is also going to be very very very long just to trip up our maximum line lint \ | ||
shorter \ | ||
options | ||
>>> | ||
|
||
output {} | ||
runtime {} | ||
} | ||
|
||
task task_b { | ||
meta {} | ||
parameter_meta {} | ||
input {} | ||
|
||
#@ except: LineWidth | ||
command <<< | ||
bin \ | ||
this is going to be a really long line that is not going to trip up our maximum line lint because it is excepted \ | ||
some other \ | ||
this line is also going to be very very very long but it will also not trip up our maximum line line because it is excepted \ | ||
shorter \ | ||
options | ||
>>> | ||
|
||
output {} | ||
runtime {} | ||
} | ||
|
||
task task_c { | ||
meta {} | ||
parameter_meta {} | ||
input {} | ||
|
||
command <<< this is a task that has a very very very long command section on the first line. >>> | ||
|
||
output {} | ||
runtime {} | ||
} | ||
|
||
# Here is a very very very very very very very very very long comment that should absolutely eclipse 90 characters. |