
This project uses nox for testing, which relies on a separate config. Having two files specify the same things in different formats is a recipe for future divergence. Move the flake8 config section to a dedicated .flake8 file instead. Update contributing instructions accordingly, and switch one remaining tox-based job over to its nox equivalent. Change-Id: Idfe4b0434436b48e13a4d2b2996c80de61deec49
7 lines
187 B
INI
7 lines
187 B
INI
[flake8]
|
|
# E123, E125 skipped as they are invalid PEP-8.
|
|
show-source = True
|
|
ignore = E123,E125,E129,H,W503,W504
|
|
builtins = _
|
|
exclude=.venv,.git,.nox,.tox,dist,doc,*lib/python*,*egg,build
|