We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b8ca9f + b255e66 commit e1151eaCopy full SHA for e1151ea
Taskfile.yml
@@ -237,7 +237,16 @@ tasks:
237
vars:
238
POETRY_GROUPS: dev
239
cmds:
240
- - poetry run codespell
+ - |
241
+ if
242
+ ! poetry run \
243
+ codespell
244
+ then
245
+ echo
246
+ echo "If this was a false positive, add the word to the ignore list:"
247
+ echo "https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/spell-check-task.md#false-positives"
248
+ exit 1
249
+ fi
250
251
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check-task/Taskfile.yml
252
general:correct-spelling:
0 commit comments