mirror of
https://github.com/ubuntu/microk8s.git
synced 2021-05-23 02:23:41 +03:00
* Add flake8 to CI checks black doesn't catch some things such as unused variables or trailing spaces in docstrings, so add flake8 to the CI process. flake8 and black disagree on a few things, and black is probably in the right, at least according to pep8. So, add a few lint ignores, as in https://github.com/psf/black/blob/master/docs/compatible_configs.md
4 lines
58 B
INI
4 lines
58 B
INI
[flake8]
|
|
max-line-length = 100
|
|
extend-ignore = E203, W503
|