workflows: update linter action arguments

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2023-10-07 08:16:27 -04:00
parent a39dbeadac
commit 6f20150e6e
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
1 changed files with 4 additions and 3 deletions

View File

@ -12,8 +12,9 @@ jobs:
python-root-list: "moonraker scripts" python-root-list: "moonraker scripts"
virtual-env: "python-lint-plus" virtual-env: "python-lint-plus"
python-version: "3.10" python-version: "3.10"
use-pycodestyle: true use-flake8: true
use-black: false flake8-version: "==6.1.0"
use-mypy: true use-mypy: true
extra-pycodestyle-options: "--ignore=E226,E301,E302,E303,W503,W504 --max-line-length=88 --max-doc-length=88" mypy-version: "==1.5.1"
extra-flake8-options: "--ignore=E226,E301,E302,E303,W503,W504 --max-line-length=88 --max-doc-length=88"
extra-mypy-options: "--ignore-missing-imports --follow-imports=silent" extra-mypy-options: "--ignore-missing-imports --follow-imports=silent"