-
Notifications
You must be signed in to change notification settings - Fork 2
/
.flake8
44 lines (44 loc) · 800 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
32
33
34
35
36
37
38
39
40
41
42
43
44
#########################
# Flake8 Configuration #
# (.flake8) #
#########################
[flake8]
ignore =
# asserts are ok when testing.
S101
# pickle
S301
# pickle
S403
S404
S603
# Line break before binary operator (flake8 is wrong)
W503
# Ignore the spaces black puts before columns.
E203
# allow path extensions for testing.
E402
DAR101
DAR201
# flake and pylance disagree on linebreaks in strings.
N400
exclude =
.tox,
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
tests/fixtures/*,
*.pyc,
*.bib,
*.egg-info,
.cache,
.eggs,
data.
max-line-length = 120
max-complexity = 20
import-order-style = pycharm
application-import-names =
seleqt
tests