-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.flake8
32 lines (30 loc) · 875 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
###############################################
# 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]
ignore =
# Complains about URLs
S310
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 =
papyrus_scripts
tests
format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s