This repository was archived by the owner on Aug 26, 2024. It is now read-only.
File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ # File : .pep8speaks.yml
2
+
3
+ scanner :
4
+ diff_only : True # If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned.
5
+ linter : pycodestyle # Other option is flake8
6
+
7
+ pycodestyle : # Same as scanner.linter value. Other option is flake8
8
+ max-line-length : 100 # Default is 79 in PEP 8
9
+ ignore : # Errors and warnings to ignore
10
+
11
+ no_blank_comment : True # If True, no comment is made on PR without any errors.
12
+ descending_issues_order : False # If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file
13
+
14
+ message : # Customize the comment made by the bot
15
+ opened : # Messages when a new PR is submitted
16
+ header : " Hello @{name}! Thanks for opening this PR. "
17
+ # The keyword {name} is converted into the author's username
18
+ footer : " Do see the [Hitchhiker's guide to code style](https://goo.gl/hqbW4r)"
19
+ # The messages can be written as they would over GitHub
20
+ updated : # Messages when new commits are added to the PR
21
+ header : " Hello @{name}! Thanks for updating this PR. "
22
+ footer : " " # Why to comment the link to the style guide everytime? :)
23
+ no_errors : " There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers: "
You can’t perform that action at this time.
0 commit comments