forked from jaumebonet/RosettaSilentToolbox
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pep8speaks.yml
26 lines (23 loc) · 1.23 KB
/
.pep8speaks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File : .pep8speaks.yml
message: # Customize the comment made by the bot
opened: # Messages when a new PR is submitted
header: "Hello @{name}, Thank you for submitting the Pull Request !"
# The keyword {name} is converted into the author's username
footer: "Do see the [Hitchhiker's guide to code style](https://goo.gl/hqbW4r)"
# The messages can be written as they would over GitHub
updated: # Messages when new commits are added to the PR
header: "Hello @{name}, Thank you for updating !"
footer: "" # Why to comment the link to the style guide everytime? :)
no_errors: "Cheers ! There are no PEP8 issues in this Pull Request. :beers: "
scanner:
diff_only: False # If True, errors caused by only the patch are shown
pycodestyle:
max-line-length: 150 # Let's think big screen, for now
ignore: # Errors and warnings to ignore
- E402 # Not importing files at top of file.
- E201 # whitespace after '('
- E202 # whitespace before ')'
- E712 # comparisson to bool (for assertions)
- E221 # multiple spaces before operator
- E241 # Multiple spaces after ','
- W504 # line break after binary operator