Skip to content

Commit

Permalink
Merge pull request #1514 from skoudoro/adding-pep8-speak
Browse files Browse the repository at this point in the history
Adding pep8speak config file
  • Loading branch information
Garyfallidis committed May 8, 2018
2 parents 327af13 + 7b5c19c commit b262974
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .pep8speaks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# File : .pep8speaks.yml

message: # Customize the comment made by the bot
opened: # Messages when a new PR is submitted
header: "Hello @{name}, Thank you for submitting the Pull Request !"
# The keyword {name} is converted into the author's username
footer: "Do see the [DIPY coding Style guideline](https://github.com/nipy/dipy/blob/master/doc/devel/coding_style_guideline.rst)"
# The messages can be written as they would over GitHub
updated: # Messages when new commits are added to the PR
header: "Hello @{name}, Thank you for updating !"
footer: "" # Why to comment the link to the style guide everytime? :)
no_errors: "Cheers ! There are no PEP8 issues in this Pull Request. :beers: "

scanner:
diff_only: True # If True, errors caused by only the patch are shown

pycodestyle:
max-line-length: 80 # Default is 79 in PEP8
# ignore: # Errors and warnings to ignore
# - W391
# - E203

only_mention_files_with_errors: True # If False, a separate status comment for each file is made.
descending_issues_order: False # If True, PEP8 issues in message will be displayed in descending order of line numbers in the file

0 comments on commit b262974

Please sign in to comment.