Merge pull request #2 from Kamoppl/kamilg/update_pep8

add pep8 config file
This commit is contained in:
Robert Baldyga 2024-07-01 14:40:21 +02:00 committed by GitHub
commit 429956c0a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

13
.pep8speaks.yml Normal file
View File

@ -0,0 +1,13 @@
# File : .pep8speaks.yml
scanner:
diff_only: True
linter: pycodestyle
pycodestyle:
max-line-length: 100
ignore:
- E402 # module level import not at top of file
- W503 # line break after binary operator
no_blank_comment: True