1
0
mirror of synced 2025-12-25 11:06:55 -05:00
Files
airbyte/tools/python/.flake8
2020-10-29 08:50:12 -07:00

11 lines
340 B
INI

[flake8]
exclude =
.venv,
models # generated protocol models
.eggs # python libraries"
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)