|
a |
|
b/setup.cfg |
|
|
1 |
[isort] |
|
|
2 |
profile = black |
|
|
3 |
line_length=100 |
|
|
4 |
multi_line_output=3 |
|
|
5 |
include_trailing_comma=True |
|
|
6 |
force_grid_wrap = 0 |
|
|
7 |
use_parentheses = True |
|
|
8 |
ensure_newline_before_comments = True |
|
|
9 |
extra_standard_library=setuptools,mock,yaml |
|
|
10 |
skip=docs,setup.py |
|
|
11 |
skip_glob=*/__init__.py |
|
|
12 |
known_myself=dosma |
|
|
13 |
known_third_party=h5py,numpy,natsort,nested-lookup,nibabel,nipype,pandas,pydicom,skimage,scipy,seaborn,SimpleITK,packaging,Pmw,tabulate,termcolor,tqdm |
|
|
14 |
no_lines_before=STDLIB |
|
|
15 |
sections=FUTURE,STDLIB,THIRDPARTY,MYSELF,FIRSTPARTY,LOCALFOLDER |
|
|
16 |
default_section=FIRSTPARTY |
|
|
17 |
|
|
|
18 |
[mypy] |
|
|
19 |
python_version=3.6 |
|
|
20 |
ignore_missing_imports = True |
|
|
21 |
warn_unused_configs = True |
|
|
22 |
disallow_untyped_defs = True |
|
|
23 |
check_untyped_defs = True |
|
|
24 |
warn_unused_ignores = True |
|
|
25 |
warn_redundant_casts = True |
|
|
26 |
show_column_numbers = True |
|
|
27 |
follow_imports = silent |
|
|
28 |
allow_redefinition = True |
|
|
29 |
; Require all functions to be annotated |
|
|
30 |
disallow_incomplete_defs = True |