pylint: Set Python version, exclude vendored file

This commit is contained in:
FestplattenSchnitzel 2023-03-05 09:24:58 +01:00 committed by Hans-Christoph Steiner
parent b5ec531e72
commit 1dcb863f55

View file

@ -31,6 +31,13 @@ disable_error_code = "no-redef, misc, arg-type"
# avoid hangs. # avoid hangs.
jobs = 4 jobs = 4
# Minimum Python version to use for version dependent checks. Will default to the
# version used to run pylint.
py-version = "3.9"
# Files or directories to be skipped. They should be base names, not paths.
ignore = ["apksigcopier.py"]
[tool.pylint.basic] [tool.pylint.basic]
# Good variable names which should always be accepted, separated by a comma. # Good variable names which should always be accepted, separated by a comma.
good-names = ["i", "j", "k", "ex", "Run", "f", "fp"] good-names = ["i", "j", "k", "ex", "Run", "f", "fp"]