Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Add codespell support #1770
Merged
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
de64d37
Add codespell support
daniellimws 61e3629
Merge branch 'master' into codespell
daniellimws 6f61303
Undo fixing of typo
daniellimws a8184a3
Update codespell to ignore binary files
daniellimws f0a99b5
Fix codespell command in Travis CI
daniellimws 7ed4f9d
Ignore codespell return value in Travis CI
daniellimws 820f728
Change Travis CI to only run codespell once
daniellimws ae15e1a
Modify run_codespell.sh
daniellimws 38fc162
Make run_codespell.sh executable
daniellimws 99e3b22
Add dash before block in .travis.yml
daniellimws e219845
Remove -w from codespell
daniellimws 4eafb98
Add -q4 to codespell
daniellimws 547c24f
Exclude changelog from codespell
daniellimws
Jump to file or symbol
Failed to load files and symbols.
| @@ -0,0 +1,4 @@ | ||
| +#!/bin/sh | ||
| +set -e | ||
| +sudo pip install codespell | ||
| +codespell -S "*.xz,*.zip,*.bz2,*.7z,*.gz,*.deb,*.rpm,*.snap,*.gpg,*.pyc,*.png,*.ico,*.jar,./.git,changelog" -q4 |