Skip to content

Commit b3a40d5

Browse files
committed
Use standardized name for spell check tasks
These are the naming conventions established in the standardized template project assets.
1 parent 46ad090 commit b3a40d5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/spell-check-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
version: 3.x
3131

3232
- name: Spell check
33-
run: task check-spelling
33+
run: task general:check-spelling

Taskfile.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ tasks:
9292
- task: docs:check
9393
- task: config:check
9494
- task: general:check-formatting
95-
- task: check-spelling
95+
- task: general:check-spelling
9696
- task: shell:check-mode
9797

9898
lint:
@@ -402,13 +402,13 @@ tasks:
402402
cmds:
403403
- npx prettier --write .
404404

405-
check-spelling:
405+
general:check-spelling:
406406
desc: Check for commonly misspelled words
407407
cmds:
408408
- poetry install --no-root
409409
- poetry run codespell
410410

411-
correct-spelling:
411+
general:correct-spelling:
412412
desc: Correct commonly misspelled words where possible
413413
cmds:
414414
- poetry install --no-root

0 commit comments

Comments
 (0)