mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-11-05 09:25:54 +00:00
024c90022a
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
26 lines
520 B
INI
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
|