-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
31 lines (27 loc) · 863 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
28
29
30
31
# Flake8 config file for immutable-views project.
[flake8]
max_line_length = 80
exclude =
.git,
.tox,
__pycache__,
*.pyc,
build_doc,
docs,
dist,
*.egg-info,
# remove the comment and it will ignore noga entries at least in files.
#disable_noqa
# Globally disabled flake8 issues:
# * W504 (line break after binary operator) is issued since 10/2018 in situations
# that are ok (e.g. within brackets).
# * E402 (module level import not at top of file) is quite daunting since we
# are using conditional imports for py2/py3 in a number of places.
# * F811 () flake8 reports this on the use of pytest fixtures. Flake8 3.7
# changed the place where the corresponding noqa statement needed to be
# placed such that there is no place anymore that works with versions before
# and after.
ignore =
W504,
# E402,
F811