mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-08-01 17:34:38 +08:00

Move tox and other configuration files to root folder. Add eachdist to make it easier to handle operations with different packages. The eachdist is taken from opentelemetry but slighty modified to avoid ignoring a given path.
19 lines
336 B
INI
19 lines
336 B
INI
[flake8]
|
|
ignore =
|
|
E501 # line too long, defer to black
|
|
F401 # unused import, defer to pylint
|
|
W503 # allow line breaks after binary ops, not after
|
|
E203 # allow whitespace before ':' (https://github.com/psf/black#slices)
|
|
exclude =
|
|
.bzr
|
|
.git
|
|
.hg
|
|
.svn
|
|
.tox
|
|
CVS
|
|
.venv*/
|
|
venv*/
|
|
target
|
|
reference/
|
|
__pycache__
|