Skip to content

Commit c38023f

Browse files
committed
Add isort & flake8 settings.
1 parent 97e1a6c commit c38023f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

setup.cfg

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,17 @@ test = pytest
33

44
[wheel]
55
universal = 1
6+
7+
[flake8]
8+
ignore = E501
9+
max-line-length = 100
10+
11+
[isort]
12+
known_django = django
13+
sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,FIRSTPARTY,LOCALFOLDER
14+
default_section = THIRDPARTY
15+
known_standard_library = factory,mock,requests
16+
known_first_party = rest_framework_json_api
17+
multi_line_output = 3
18+
line_length = 100
19+
indent = 4

0 commit comments

Comments
 (0)