1
0
mirror of synced 2026-01-31 19:01:59 -05:00
Files
airbyte/tools/python/.flake8
2022-01-17 09:27:14 +01:00

14 lines
420 B
INI

[flake8]
exclude =
.venv,
models # generated protocol models
.eggs # python libraries"
.tox
build
airbyte_api_client # generated api client in octavia-cli
extend-ignore =
E203, # whitespace before ':' (conflicts with Black)
E231, # Bad trailing comma (conflicts with Black)
E501, # line too long (conflicts with Black)
W503, # line break before binary operator (conflicts with Black)