File: .flake8

package info (click to toggle)
python-rcssmin 1%3A1.1.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,196 kB
  • sloc: python: 2,379; ansic: 1,216; sh: 110; makefile: 20
file content (24 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[flake8]

ignore =
    # module level import not at top of file
    E402,
    # line break before binary operator
    W503,
    # line break after binary operator
    W504,
    # expected 2 blank lines after class or function definition
    E305,
    # do not assign a lambda expression, use a def
    E731,
    # line too long
    E501,
    # continuation line unaligned for hanging indent
    E131,

exclude =
    setup.py
    .git, __pycache__, docs/
    build, dist

max-complexity = 40