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 37f7eb1 + 515175f commit 96c633dCopy full SHA for 96c633d
Taskfile.yml
@@ -167,8 +167,15 @@ tasks:
167
POETRY_GROUPS: dev
168
cmds:
169
- |
170
- poetry run \
171
- codespell
+ if ! {
+ poetry run \
172
+ codespell
173
+ }; then
174
+ echo
175
+ echo "If this was a false positive, add the word to the ignore list:"
176
+ echo "https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/spell-check-task.md#false-positives"
177
+ exit 1
178
+ fi
179
180
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/spell-check-task/Taskfile.yml
181
general:correct-spelling:
0 commit comments