Skip to content

Commit

Permalink
Add isort & flake8 settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
jarekwg committed Sep 8, 2016
1 parent 97e1a6c commit c38023f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions setup.cfg
Expand Up @@ -3,3 +3,17 @@ test = pytest

[wheel]
universal = 1

[flake8]
ignore = E501
max-line-length = 100

[isort]
known_django = django
sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,FIRSTPARTY,LOCALFOLDER
default_section = THIRDPARTY
known_standard_library = factory,mock,requests
known_first_party = rest_framework_json_api
multi_line_output = 3
line_length = 100
indent = 4

0 comments on commit c38023f

Please sign in to comment.