1
0
mirror of synced 2026-01-27 07:02:03 -05:00
Files
airbyte/tools/python/.flake8
Maksym Pavlenok d3b0c998b8 🎉 CI secrets: full migration to GSM (#8561)
* add python packages for CI scripts

* add tox config for all subpackages

* draft version

* init venv for scripts

* fix venv

* remove used comments

* fix run test

* change base folder

* update secret format

* update docs

* remove an unused file

* remove github secrets logic fully

* fix base_folder balue

* add functions desc
2021-12-15 15:08:46 +02:00

13 lines
359 B
INI

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