-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
33 lines (31 loc) · 840 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
[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=
mypackagename
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
[mypy]
ignore_missing_imports=True
allow_redefinition=True
no_strict_optional=True
follow_imports=silent
disallow_untyped_defs=True
disallow_incomplete_defs=True
warn_unreachable=True