[flake8]
max-line-length = 89
exclude =
build
modules
dist
docs
coverage.xml
reana_job_controller.egg-info # Should match the repository's name
.*/
env/
.git
__pycache__
ignore = E203, E231, E266, E501, W503, F403, F401
max-complexity = 18
select = B,C,E,F,W,T4,B9
Description
There is a minor typo in the
.flake8files across multiple REANA repositories, likely due to copy-pasting. Specifically, the exclusion list mistakenly includesreana_job_controller.egg-info, whereas it should reference the respective repository's actual name instead ofreana_job_controller.Task
.flake8file.reana_job_controller.egg-infowith the correct repository-specific.egg-infoname.Example of the Incorrect Configuration