Add .pep8 and .pylintrc

This commit is contained in:
kaidokert 2015-07-20 02:10:31 +01:00
parent 40a091f432
commit b275c7ca72
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,3 @@
[pep8]
max-line-length = 120
exclude=*/migrations/*

View File

@ -0,0 +1,11 @@
[MASTER]
load-plugins=pylint_common, pylint_django{% if cookiecutter.use_celery == "y" %}, pylint_celery {% endif %}
[FORMAT]
max-line-length=120
[MESSAGES CONTROL]
disable=missing-docstring,invalid-name
[DESIGN]
max-parents=13