1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
scanner:
diff_only: True
linter: pycodestyle
pycodestyle: # Valid if scanner.linter is pycodestyle
max-line-length: 79
ignore: ["E203", "E701", "W503"]
exclude: []
count: False
first: False
show-pep8: False
show-source: False
statistics: False
hang-closing: False
filename: []
select: []
flake8: # Valid if scanner.linter is flake8
max-line-length: 79
ignore: ["E203", "E501", "E701", "W503"]
exclude: []
count: False
show-source: False
statistics: False
hang-closing: False
filename: []
select: []
no_blank_comment: True
descending_issues_order: False
only_mention_files_with_errors: True
message:
opened:
header: ""
footer: ""
updated:
header: ""
footer: ""
no_errors: "There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers: "
|