https://github.com/bashtage/arch
Raw File
Tip revision: 4cd013d6d6fa0cd14981e69734c3bee515a6b8ef authored by Kevin Sheppard on 15 July 2023, 10:02:41 UTC
TST: Add initial tests for append
Tip revision: 4cd013d
.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