Skip to content
Snippets Groups Projects

Add a setup.cfg to make flake8 compatible with blackified files

Compare and
1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
setup.cfg 0 → 100644
+ 6
0
[flake8]
# E203: whitespaces before ':' <https://github.com/psf/black/issues/315>
# E231: missing whitespace after ','
# W503: line break before binary operator <https://github.com/psf/black/issues/52>
ignore = E203,E231,W503
max-line-length = 88
Loading