-
Notifications
You must be signed in to change notification settings - Fork 3
/
.flake8
29 lines (27 loc) · 827 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
###############################################
# Flake8 Configuration #
# (.flake8) #
# Adapted from https://github.com/pybel/pybel #
###############################################
# This config can't go in setup.cfg because Python's ConfigParser
# used by setup.pg will interpolate on all of Scott's beautiful % signs
# that make the pretty colored output
[flake8]
exclude =
.tox,
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
tests/fixtures/*,
*.pyc,
*.egg-info,
.cache,
.eggs
max-line-length = 120
import-order-style = pycharm
application-import-names =
iter_together
tests
format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s