2017-08-05 21:04:38 +00:00
|
|
|
[flake8]
|
|
|
|
max_line_length = 100
|
|
|
|
# The following line raises an exception on `pip install flake8`
|
|
|
|
# So we're using the command line argument instead.
|
|
|
|
# format = %(path)s [%(row)s:%(col)s] %(code)s: %(text)s
|
|
|
|
|
|
|
|
[pep8]
|
|
|
|
max_line_length = 100
|
|
|
|
pep8_passes = 2000
|
|
|
|
in_place = 1
|
|
|
|
recursive = 1
|
|
|
|
verbose = 1
|
|
|
|
|
2017-06-23 15:03:01 +00:00
|
|
|
[isort]
|
|
|
|
line_length = 100
|
2017-07-28 17:01:19 +00:00
|
|
|
not_skip = __init__.py
|
2017-06-23 15:03:01 +00:00
|
|
|
default_section = THIRDPARTY
|
|
|
|
known_first_party = nyaa
|
2017-07-28 17:01:19 +00:00
|
|
|
known_flask =
|
|
|
|
flask*,
|
|
|
|
jinja2,
|
|
|
|
markupsafe,
|
|
|
|
werkzeug,
|
|
|
|
wtforms
|
2017-06-23 15:03:01 +00:00
|
|
|
sections = STDLIB,FLASK,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
|