Prepare flake8 for black

This commit is contained in:
Pradyun Gedam 2020-09-23 19:59:10 +05:30
parent faee60baea
commit a00f85d22b
No known key found for this signature in database
GPG Key ID: FF99710C4332258E
1 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,7 @@ default_section = THIRDPARTY
include_trailing_comma = true
[flake8]
max-line-length = 88
exclude =
./build,
.nox,
@ -28,6 +29,8 @@ ignore =
G200, G202,
# pycodestyle checks ignored in the default configuration
E121, E123, E126, E133, E226, E241, E242, E704, W503, W504, W505,
# black adds spaces around ':'
E203,
per-file-ignores =
# G: The plugin logging-format treats every .log and .error as logging.
noxfile.py: G