Files
style_checker/setup.cfg
Joel Brobecker 1eb13e8c8b setup.cfg [flake8]: Add max-line-length = 88 (prep for black formatting)
Change-Id: I0761a8e13fdceb2abc7967cd2850d3161ba34cb9
2021-04-20 06:54:37 +04:00

8 lines
266 B
INI

[flake8]
# Follow what the style_checker does in terms of the extend-ignore...
extend-ignore = E203,E402
exclude = tests
# We want the code to be formatted by black, which uses a max-line-length
# of 88 characters, so tell flake8 we allow this.
max-line-length = 88