forked from jameynakama/celeryman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (33 loc) · 989 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[flake8]
max-line-length = 99
# Error codes can be found at the following URLs
# http://flake8.pycqa.org/en/latest/user/error-codes.html for flake8 errors
# https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes for pycodestyle errors
ignore =
# W503: line break before binary operator
W503,
# C812: missing trailing comma
C812,
# C813: missing trailing comma in Python 3
C813,
# C815: missing trailing comma in Python 3.5+
C815,
exclude =
**/migrations/*,
*pyc,
.git,
__pycache__,
.ropeproject,
**/local-override/*,
conftest.py
[isort]
line_length = 99
multi_line_output = 3
include_trailing_comma = True
known_standard_library = asyncio
known_third_party = six
known_our_third_party = chassis,budgie,epub,feather,orm_vault_client,nest,sparrow
sections = FUTURE,STDLIB,THIRDPARTY,OUR_THIRD_PARTY,FIRSTPARTY,LOCALFOLDER
skip = migrations
# To prevent sorting of an import, add comment to line:
# isort:skip