mirror of
https://github.com/containers/podman-compose.git
synced 2025-05-28 14:17:50 +02:00
Added flake8 excludes to rules that are already ignored by the current code to avoid validation issues with code that has already been approved. Added pylint disable to line with lint offense already accepted. Signed-off-by: Italo Maia <italo.maia@gmail.com>
11 lines
217 B
INI
11 lines
217 B
INI
[bdist_wheel]
|
|
universal = 1
|
|
|
|
[metadata]
|
|
version = attr: podman_compose.__version__
|
|
|
|
[flake8]
|
|
# The GitHub editor is 127 chars wide
|
|
max-line-length=127
|
|
# These are not being followed yet
|
|
ignore=E222,E231,E272,E713,W503 |