Skip to content
This repository was archived by the owner on Apr 23, 2021. It is now read-only.

Commit 0057ce0

Browse files
authored
Create .pep8speaks.yml
1 parent 0d48d5d commit 0057ce0

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.pep8speaks.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# File : .pep8speaks.yml
2+
3+
message: # Customize the comment made by the bot
4+
opened: # Messages when a new PR is submitted
5+
header: "Hello @{name}, Thank you for submitting the Pull Request !"
6+
# The keyword {name} is converted into the author's username
7+
footer: "If you have not done so, please consult [PEP8](https://www.python.org/dev/peps/pep-0008/) and [PEP257](https://www.python.org/dev/peps/pep-0257/)"
8+
# The messages can be written as they would over GitHub
9+
updated: # Messages when new commits are added to the PR
10+
header: "Hello @{name}, Thank you for updating !"
11+
footer: "" # Why to comment the link to the style guide everytime? :)
12+
no_errors: "Cheers ! There are no PEP8 issues in this Pull Request. :beers: "
13+
14+
scanner:
15+
diff_only: False # If True, errors caused by only the patch are shown
16+
17+
pycodestyle:
18+
max-line-length: 999 # Default is 79 in PEP8
19+
ignore: # Errors and warnings to ignore
20+
- E505
21+
22+
only_mention_files_with_errors: True # If False, a separate status comment for each file is made.
23+
descending_issues_order: False # If True, PEP8 issues in message will be displayed in descending order of line numbers in the file

0 commit comments

Comments
 (0)