We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3144331 commit c7c38e7Copy full SHA for c7c38e7
.pep8speaks.yml
@@ -5,7 +5,10 @@ scanner:
5
pycodestyle: # Same as scanner.linter value. Other option is flake8
6
max-line-length: 88 # Follow black's line length
7
ignore: # Errors and warnings to ignore
8
+ - E266 # Too many leading '#' for block comments
9
- E402 # module level import not at top of file
10
+ - W503 # line break before binary operator
11
+
12
13
no_blank_comment: False # If True, no comment is made on PR without any errors.
14
descending_issues_order: False # If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file
0 commit comments