Skip to content

Commit 3e6f8d4

Browse files
authored
Add config so we can ignore 80 char line limits
1 parent 4de1ba5 commit 3e6f8d4

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.pep8speaks.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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: ""
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: 100 # Default is 79 in PEP8
19+
ignore: # Errors and warnings to ignore
20+
- W391
21+
- E203
22+
23+
only_mention_files_with_errors: True # If False, a separate status comment for each file is made.
24+
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)