File: .flake8

package info (click to toggle)
torf 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 988 kB
  • sloc: python: 10,054; makefile: 15; sh: 8
file content (36 lines) | stat: -rw-r--r-- 858 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
32
33
34
35
36
[flake8]
ignore =
    # visually indented line with same indent as next logical line
    E129,
    # missing whitespace before ':'
    E203,
    # multiple spaces before operator
    E221,
    # missing whitespace after ','
    E231,
    # too many leading '#' for block comment
    E266,
    # multiple spaces after keyword
    E271,
    # multiple spaces before keyword
    E272,
    # line too long
    E501,
    # expected 2 blank lines
    E302,
    # too many blank lines
    E303,
    # expected 2 blank lines after class or function definition
    E305,
    # multiple spaces after ','
    E241,
    # multiple statements on one line (colon)
    E701,
    # multiple statements on one line (def)
    E704,
    # line break before binary operator
    W503,
    # line break after binary operator
    W504,
    # invalid escape sequence '\ '
    W605,