generated from NarrativeScience-old/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
25 lines (24 loc) · 673 Bytes
/
setup.cfg
File metadata and controls
25 lines (24 loc) · 673 Bytes
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
[isort]
# These rules should conform to flake8-import-order's google import order style
# and black's styling rules
# If adding a new package to this list, please make sure to update the .flake8 file as
# well
atomic=true
combine_as_imports=true
default_section=THIRDPARTY
force_sort_within_sections=true
include_trailing_comma=true
known_standard_library=typing
known_first_party=
async_task_queue
test_utils
line_length=88
multi_line_output=3
no_lines_before=LOCALFOLDER
order_by_type=false
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
skip=__init__.py
[pydocstyle]
convention=numpy
add-select=D413,D416,D417
add-ignore=D202,D205,D400,D401,D406,D407