https://github.com/bashtage/arch
Raw File
Tip revision: 71c7bef92b0ddf36f627344a26f24abf7b1e5346 authored by Kevin Sheppard on 22 July 2021, 16:50:53 UTC
Merge pull request #515 from bashtage/update-reqs
Tip revision: 71c7bef
.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