1
0
Fork 0
mirror of https://gitlab.com/SIGBUS/nyaa.git synced 2024-06-29 02:18:39 +00:00
nyaa/setup.cfg
Kfir Hadas 024c90022a Nyaa development helper (tool) (#324)
Add new tool for developing (lint/autopep8/isort/test)

New tool uses flake8 and isort for lint checks.
Deprecate existing tool (still works)
Update readme
Update Travis config
2017-08-06 00:04:38 +03:00

26 lines
520 B
INI

[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
[isort]
line_length = 100
not_skip = __init__.py
default_section = THIRDPARTY
known_first_party = nyaa
known_flask =
flask*,
jinja2,
markupsafe,
werkzeug,
wtforms
sections = STDLIB,FLASK,THIRDPARTY,FIRSTPARTY,LOCALFOLDER