-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pep8speaks.yml
23 lines (20 loc) · 998 Bytes
/
.pep8speaks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
scanner:
diff_only: True # If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned.
linter: flake8 # Alternative option - flake8
flake8: # Valid if scanner.linter is flake8
max-line-length: 120
exclude: ['venv/*', 'frontend/*']
ignore:
- E402
- W291
no_blank_comment: True # If True, no comment is made on PR without any errors.
descending_issues_order: False # If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file
only_mention_files_with_errors: True # If False, a separate status section for each file is made in the comment.
message: # Customize the comment made by the bot
opened: # Messages when a new PR is submitted
header: ""
footer: ""
updated: # Messages when a PR is updated
header: ""
footer: ""
no_errors: "There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers: "