15 lines
474 B
INI
15 lines
474 B
INI
[flake8]
|
|
exclude =
|
|
.venv,
|
|
models # generated protocol models
|
|
airbyte-cdk/python/airbyte_cdk/models/__init__.py
|
|
.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)
|