Skip to content

Commit

Permalink
update ignore rules
Browse files Browse the repository at this point in the history
  • Loading branch information
BradleySappington committed Feb 7, 2024
1 parent da31cc6 commit 2c15e33
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .pep8speaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ scanner:
pycodestyle:
max-line-length: 100 # Default is 79 in PEP8
ignore: # Errors and warnings to ignore
- E501 # Line too long
- E505
- W191 # indentation contains tabs
- W291 # trailing whitespace
- W292 # no newline at end of file
- W293 # blank line contains whitespace
- W391 # blank line at end of file
- W503 # Outdated and replaced by W504
- W505 # doc line too long
- E101 # indentation contains mixed spaces and tabs
- E401 # multiple imports on one line
- E501 # line too long

only_mention_files_with_errors: True # If False, a separate status comment for each file is made.
descending_issues_order: False # If True, PEP8 issues in message will be displayed in descending order of line numbers in the file

0 comments on commit 2c15e33

Please sign in to comment.