forked from 1ts-org/snipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
27 lines (27 loc) · 794 Bytes
/
.flake8
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
[flake8]
ignore =
# default ignore list in 3.5.0:
# continuation line under-indented for hanging indent
E121,
# closing bracket does not match indentation of opening bracket’s line
E123,
# continuation line over-indented for hanging indent
E126,
# missing whitespace around arithmetic operator
E226,
# multiple spaces or tab after ,
E24,
# multiple statements on one line (def)
# E704,
# line break before binary operator
W503,
# line break after binary operator (revisit this)
W504,
#
# my own opinions:
# "do not use variables named ‘l’, ‘O’, or ‘I’"
# .. or just use a reasonable font.
E741
# flake8 3.6.0 thinks there should be spaces around parameter =?
E252
max-line-length = 80