You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
configuration is listed explicit with every parameter in pyproject.toml (generated with --generate-toml-config). These are over 500 lines, makes it hard to navigate, and difficult to find which parameters we changed. Suggest to only list the settings we change (will maybe in 20 lines), see PR Linter updates #684
was there a reason not to use pylint as a action workflow? It is very pedantic and maybe it simply went on our nerves
Flake8
flake 8 configurations can be found in two places:
pre-commit is running with args: ["--max-line-length=100", "--extend-ignore=E203,E712"]
github action is running with ``--max-line-length 100 --per-file-ignores="_version.py:F401 E501" .`
The text was updated successfully, but these errors were encountered:
Noticed two issues related to linters:
Pylint:
--generate-toml-config
). These are over 500 lines, makes it hard to navigate, and difficult to find which parameters we changed. Suggest to only list the settings we change (will maybe in 20 lines), see PR Linter updates #684Flake8
flake 8 configurations can be found in two places:
args: ["--max-line-length=100", "--extend-ignore=E203,E712"]
The text was updated successfully, but these errors were encountered: