Skip to content

Commit a159c66

Browse files
authored
Merge pull request #136 from bourque/pep8speaks-config
Config file for pep8speaks
2 parents f32494e + 222df53 commit a159c66

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.pep8speaks.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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 the [`jwql` Style Guide](https://github.com/spacetelescope/jwql/blob/master/style_guide/style_guide.md)"
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+
21+
only_mention_files_with_errors: True # If False, a separate status comment for each file is made.
22+
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)