forked from networkx/networkx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pep8speaks.yml
19 lines (17 loc) · 936 Bytes
/
.pep8speaks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
scanner:
linter: flake8
flake8:
max-line-length: 88 # Default is 79 in PEP 8
ignore: # Errors and warnings to ignore
- E402 # module level import not at top of file
- W503 # newline before binary operator
message: # Customize the comment made by the bot
opened: # Messages when a new PR is submitted
header: "Hello @{name}! Thanks for opening this PR. "
# The keyword {name} is converted into the author's username
footer: "Please install and run [psf/black](https://github.com/psf/black)."
# The messages can be written as they would over GitHub
updated: # Messages when new commits are added to the PR
header: "Hello @{name}! Thanks for updating this PR. "
footer: "Please install and run [psf/black](https://github.com/psf/black)."
no_errors: "There are currently no PEP 8 issues detected in this Pull Request. Cheers!"