mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 03:33:08 +00:00
60e8c6a6c7
* Migrate to pyproject.toml * Add .venv to .gitignore * Exclude tests in MANIFEST.in * Move pytest into pyproject.toml * Remove unused coveralls * Restore requirements_dev.txt Needed for CI venv cache and readthedocs. * Exclude .venv for flake8 * Bump minimum Python version to 3.9
18 lines
609 B
INI
18 lines
609 B
INI
# Flake8 configuration
|
|
# Copy or symlink this file to ~/.flake8
|
|
# --------------------------------------
|
|
# E128: continuation line under-indented for visual indent
|
|
# E701: multiple statements on one line (colon)
|
|
# E702: multiple statements on one line (semicolon)
|
|
# E731: do not assign a lambda expression, use a def
|
|
# W503: line break before binary operator
|
|
# W605: invalid escape sequence
|
|
[flake8]
|
|
ignore=E128,E701,E702,E731,W503,W605
|
|
exclude=compat.py,venv,.venv
|
|
per-file-ignores =
|
|
tests/payloads.py:E501
|
|
max-complexity = -1
|
|
# The GitHub editor is 127 chars wide
|
|
max-line-length = 127
|
|
show-source = True
|