https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: f5d27ddae67a4cd0fcf8f0190fd4daa12cd333a1 authored by Phabricator Migration user on 06 January 2023, 22:57:35 UTC
Merge branch 'generated-differential-D8163-source' into 'generated-differential-D8163-target'
Tip revision: f5d27dd
setup.cfg
[flake8]
# E203: whitespaces before ':' <https://github.com/psf/black/issues/315>
# E231: missing whitespace after ','
# E501: line too long, use B950 warning from flake8-bugbear instead
# W503: line break before binary operator <https://github.com/psf/black/issues/52>
select = C,E,F,W,B950
ignore = E203,E231,E501,W503
max-line-length = 88
back to top