* 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
13 lines
359 B
INI
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)
|