forked from drugrelink/drugrelink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
37 lines (36 loc) · 792 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
#########################
# Flake8 Configuration #
# (.flake8) #
# (formerly in tox.ini) #
#########################
[flake8]
ignore =
# Line break after operator
W504
# Complaining about assert statements
S101
# Complains about random number generators
S311
# Complains about pickles
S301, S403
# Complains about URLs
S310
exclude =
.tox,
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
tests/fixtures/*,
*.pyc,
*.egg-info,
.cache,
.eggs
max-complexity = 25
max-line-length = 120
import-order-style = pycharm
application-import-names =
seffnet
tests
format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s