File: .flake8

package info (click to toggle)
python-rjsmin 1.2.5%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,256 kB
  • sloc: javascript: 8,503; python: 5,315; ansic: 821; sh: 100; makefile: 19
file content (31 lines) | stat: -rw-r--r-- 608 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[flake8]

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


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

max-complexity = 40