CI: Tweak codespell

- Do not explicitly skip .git dir, all . files are ignored by default.
- Set quiet level mask to 4 to ignore misspells that are disabled for automatic correction. In this case we want to allow "uint".
This commit is contained in:
Paweł Bylica 2018-10-05 16:21:09 +02:00
parent a43a93f4ec
commit 99c7cbfa9f
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ jobs:
command: |
sudo pip3 install --upgrade pip setuptools
sudo pip3 install codespell
codespell --skip=".git" --ignore-words=./.codespell-whitelist
codespell --quiet-level=4 --ignore-words=./.codespell-whitelist
build: &build
docker: