-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The entire repo runs cleansr with 'codespell'. I also set up the hook: $ cat .git/hooks/commit-msg which codespell >> /dev/null which_codespell_rtn=$? if [[ "${which_codespell_rtn}" == "0" ]] ; then codespell $1 fi to check the contents of the commit message.
- Loading branch information
1 parent
46eb645
commit 1fea7d9
Showing
3 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[codespell] | ||
check-filenames = | ||
check-hidden = | ||
# Disable warnings about binary files | ||
quiet-level = 2 | ||
skip = */.git,*/*.pdf | ||
#ignore-words-list = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters