File: .pep8speaks.yml

package info (click to toggle)
mdanalysis 2.9.0-12
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 115,708 kB
  • sloc: python: 86,757; ansic: 8,156; makefile: 215; sh: 138
file content (40 lines) | stat: -rw-r--r-- 895 bytes parent folder | download | duplicates (3)
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: "