Add codespell to linter.

This commit is contained in:
auouymous 2023-07-19 02:34:56 -06:00
parent 375a94a139
commit 64fe2648a8
2 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,7 @@ jobs:
run: |
sudo apt-get update -q
sudo apt-get install intltool desktop-file-utils
pip3 install pytest-cov minimock pycodestyle isort requests pytest pytest-httpserver
pip3 install pytest-cov minimock pycodestyle isort codespell requests pytest pytest-httpserver
pip3 install podcastparser mygpoclient
- name: Lint
run: make lint

View File

@ -70,6 +70,7 @@ ISORTOPTS := -c share src/gpodder tools bin/* *.py
lint:
pycodestyle share src/gpodder tools bin/* *.py
isort -q $(ISORTOPTS) || isort --df $(ISORTOPTS)
codespell --quiet-level 3 --skip "./.git,*.po,./share/applications/gpodder.desktop"
release: distclean
$(PYTHON) setup.py sdist