RFC: Integrate spell-checker in CI / build process?
ispivey opened this issue · 1 comments
ispivey commented
To help contributors and take some burden off reviewers, it would be great if we could integrate automated spell-checking into our pipeline.
https://www.npmjs.com/package/markdown-spellcheck is one such tool; I’m sure there are others.
Questions:
- Is this a good idea?
- What do other documentation repos do?
- What tool should we use?
- Where should we integrate this in our pipeline, if we choose to do so?
exvuma commented
I love this! While we are at it, prettier has also been driving me nuts. Can we include setting up husky into prettier with this RC?
- YES!
- gatsby uses a github app Typo CI and it looks free
- Looks like two options: an npm package markdown-spellcheck or a Github app. I am not sure which I like better, but the npm package probably gives us more control since we can just run
npm run spellcheck
in CI or with husky. Also it has 19k weekly downloads. What do you think? - Husky and/or github actions I think makes sense