File: .pep8speaks.yml

package info (click to toggle)
pandas 0.23.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 167,704 kB
  • sloc: python: 230,826; ansic: 11,317; sh: 682; makefile: 133
file content (12 lines) | stat: -rw-r--r-- 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
# File : .pep8speaks.yml

scanner:
    diff_only: True  # If True, errors caused by only the patch are shown

pycodestyle:
    max-line-length: 79
    ignore:  # Errors and warnings to ignore
        - E402,  # module level import not at top of file
        - E731,  # do not assign a lambda expression, use a def
        - E741,  # do not use variables named 'l', 'O', or 'I'
        - W503   # line break before binary operator