You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
env={DICTIONARY="en_GB";};pre-commit={hooks={# Spellinghunspell={enable=true;description="Run hunspell on all org files";files="\.org$";entry="${pkgs.hunspell}/bin/hunspell -p .spelling/dictionary -l";};};};
That -l flag made me trip, as it's key and without it hunspell runs in interactive mode and results in a busy wait when running pre-commit run --all-files --show-diff-on-failure.
The text was updated successfully, but these errors were encountered:
It seems that hunspell is not that easy to get working (#159 sort of complains about it)
I can't get
hunspell
to work either, it simply skips all files, so I'm guessing that it might be good to have an example on how to use hunspell too.After some fooling around I ended up with,
That
-l
flag made me trip, as it's key and without it hunspell runs in interactive mode and results in a busy wait when runningpre-commit run --all-files --show-diff-on-failure
.The text was updated successfully, but these errors were encountered: