Set pep8speaks' max-line-length to 120 (same as black) (#3173)

This commit is contained in:
Carlos Mocholí 2020-08-26 03:21:02 +02:00 committed by GitHub
parent a7705c8677
commit 59fb332677
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ scanner:
linter: pycodestyle # Other option is flake8
pycodestyle: # Same as scanner.linter value. Other option is flake8
max-line-length: 119 # Default is 79 in PEP 8
max-line-length: 120 # Default is 79 in PEP 8
ignore: # Errors and warnings to ignore
- W504 # line break after binary operator
- E402 # module level import not at top of file