-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy path.pep8speaks.yml
More file actions
19 lines (16 loc) · 862 Bytes
/
.pep8speaks.yml
File metadata and controls
19 lines (16 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
message:
opened:
header: "Hello @{name}, thank you for submitting this PR!"
footer: "In need of guides? [Guidelines for PEP-8](https://pep8.org/) and [Hitchhiker's guide to code style](https://python-guide.readthedocs.io/en/latest/writing/style/)"
updated:
header: "Hello @{name}, Thank you for updating the PR!"
footer: ""
no_errors: "Great work! I discovered no PEP8 issues in this Pull Request. :1st_place_medal:"
scanner:
diff_only: True # Only show errors created by the new code
pycodestyle:
max-line-length: 120 # Default PEP8 is 79, but allow 120 because a lot of people use wider screens nowadays...
ignore: E701 # We now use the syntax `x: int = 9` in typing
exclude: TestDiff.py,migrations
only_mention_files_with_errors: True
descending_issues_order: False