File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments