File: .flake8

package info (click to toggle)
python-scooby 0.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 360 kB
  • sloc: python: 1,115; makefile: 32
file content (23 lines) | stat: -rw-r--r-- 554 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[flake8]
exclude = .git,__pycache__,build,dist
ignore =
    # whitespace before ':'
    E203,
    # line break before binary operator
    W503,
    # line length too long
    E501,
    # do not assign a lambda expression, use a def
    E731,
    # too many leading '#' for block comment
    E266,
    # ambiguous variable name
    E741,
    # module level import not at top of file
    E402,
    # Quotes (temporary)
    Q0,
    # bare excepts (temporary)
    B001, E722,
    # Ignore "black" formatting errors, since black is already checked
    BLK100