swh:1:snp:d7cd4867c335577b1b09043f65aeb6d95a54799a
Raw File
Tip revision: c7de747fdc7334a1013486d56acf7a5dd034884f authored by Kevin Sheppard on 17 May 2024, 11:02:01 UTC
Merge pull request #726 from bashtage/small-doc-fixes
Tip revision: c7de747
.pep8speaks.yml
scanner:
    diff_only: False
    linter: flake8  # Other option is flake8

pycodestyle:  # Same as scanner.linter value. Other option is flake8
    max-line-length: 99  # Default is 79 in PEP 8
    ignore:  # Errors and warnings to ignore
        - E203  # Whitespace before ':'
        - W503  # Line break occurred before a binary operator (W503)

no_blank_comment: False  # If True, no comment is made on PR without any errors.
back to top