File: .flake8

package info (click to toggle)
mapserver 8.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,492 kB
  • sloc: ansic: 137,759; cpp: 124,149; python: 3,175; xml: 1,722; yacc: 1,114; cs: 1,001; sh: 836; lex: 778; java: 588; perl: 489; makefile: 383; tcl: 158; ruby: 55
file content (35 lines) | stat: -rw-r--r-- 980 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
24
25
26
27
28
29
30
31
32
33
34
35
[flake8]
max-line-length = 88
ignore =
    # Unnecessary dict/list/tuple call - rewrite as a literal
    C408 
    # whitespace before ':' - doesn't work well with black
    E203 
    # missing whitespace around operator - let black worry about that
    E225 
    # inline comment should start with '# '
    E262 
    # block comment should start with '# '
    E265 
    # too many leading '#' for block comment
    E266 
    # expected 2 blank lines, found 1
    E302 
    # module level import not at top of file
    E402 
    # line too long - let black handle that
    E501 
    # comparison to None should be
    E711 
    # comparison to False/True should be
    E712 
    # ambiguous variable name
    E741 
    # may be undefined, or defined from star imports
    F405 
    # trailing
    W291 
    # line break occurred before a binary operator - let black worry about that
    W503 
    # line break occurred after a binary operator - let black worry about that
    W504