You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 23, 2021. It is now read-only.
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