7474 cmds :
7575 - |
7676 if ! which ec &>/dev/null; then
77- echo "ec not found or not in PATH. Please install: https://github.com/editorconfig-checker/editorconfig-checker#installation"
77+ echo "ec not found or not in PATH."
78+ echo "Please install: https://github.com/editorconfig-checker/editorconfig-checker#installation"
7879 exit 1
7980 fi
8081 - ec
@@ -85,7 +86,11 @@ tasks:
8586 deps :
8687 - task : npm:install-deps
8788 cmds :
88- - npx prettier --write .
89+ - |
90+ npx \
91+ prettier \
92+ --write \
93+ .
8994
9095 # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-dependencies-task/Taskfile.yml
9196 general:cache-dep-licenses :
@@ -97,7 +102,8 @@ tasks:
97102 echo "Licensed does not have Windows support."
98103 echo "Please use Linux/macOS or download the dependencies cache from the GitHub Actions workflow artifact."
99104 else
100- echo "licensed not found or not in PATH. Please install: https://github.com/github/licensed#as-an-executable"
105+ echo "licensed not found or not in PATH."
106+ echo "Please install: https://github.com/github/licensed#as-an-executable"
101107 fi
102108 exit 1
103109 fi
@@ -117,15 +123,20 @@ tasks:
117123 deps :
118124 - task : poetry:install-deps
119125 cmds :
120- - poetry run codespell
126+ - |
127+ poetry run \
128+ codespell
121129
122130 # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check-task/Taskfile.yml
123131 general:correct-spelling :
124132 desc : Correct commonly misspelled words where possible
125133 deps :
126134 - task : poetry:install-deps
127135 cmds :
128- - poetry run codespell --write-changes
136+ - |
137+ poetry run \
138+ codespell \
139+ --write-changes
129140
130141 # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml
131142 go:fix :
@@ -227,15 +238,22 @@ tasks:
227238 deps :
228239 - task : npm:install-deps
229240 cmds :
230- - npx markdownlint-cli --fix "**/*.md"
241+ - |
242+ npx \
243+ markdownlint-cli \
244+ --fix \
245+ "**/*.md"
231246
232247 # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-markdown-task/Taskfile.yml
233248 markdown:lint :
234249 desc : Check for problems in Markdown files
235250 deps :
236251 - task : npm:install-deps
237252 cmds :
238- - npx markdownlint-cli "**/*.md"
253+ - |
254+ npx \
255+ markdownlint-cli \
256+ "**/*.md"
239257
240258 # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/npm-task/Taskfile.yml
241259 npm:install-deps :
@@ -376,4 +394,9 @@ tasks:
376394 deps :
377395 - task : poetry:install-deps
378396 cmds :
379- - poetry run yamllint --format {{default "colored" .YAMLLINT_FORMAT}} .
397+ - |
398+ poetry run \
399+ yamllint \
400+ --format \
401+ {{default "colored" .YAMLLINT_FORMAT}} \
402+ .
0 commit comments