-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.flake8
47 lines (45 loc) · 951 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
45
46
47
#########################
# Flake8 Configuration #
# (.flake8) #
# (formerly in tox.ini) #
#########################
[flake8]
ignore =
# docstring in magic method
D105
# Line break after operator
W503
W504
# Docstring in __init__
D107
# Complaining about assert statements
S101
# Complains about random number generators
S311
# Complains about XML parser
S314
S405
exclude =
.tox,
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
src/pybel_tools/analysis/epicom/build.py,
tests/fixtures/*,
tests/*,
*.pyc,
*.egg-info,
.cache,
.eggs
max-complexity = 25
max-line-length = 120
import-order-style = pycharm
application-import-names =
pybel_tools
tests
# BEL
pybel
bel_resources
format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s