seedcase-project / template-python-project

A template repository to use when making a Python project for Seedcase.
MIT License
0 stars 0 forks source link

Implement a spellchecker in justfile #9

Open lwjohnst86 opened 7 months ago

lwjohnst86 commented 7 months ago

Would be nice to have a spellcheck linter of some type as a recipe in the justfile. ~And maybe an automatic one in VSCode?~ (already implemented with cSpell)

K-Beicher commented 2 weeks ago

@lwjohnst86 how does this differ from the spell check that we have running in VS Code already?

lwjohnst86 commented 2 weeks ago

@K-Beicher that is something built-in/an extension in VS Code, which means we can integrate it into our build system, e.g. in the justfile or as a GitHub workflow.

K-Beicher commented 2 weeks ago

I'll put it back in the list in that case, not sure I know enough about linting.