[030aeb]: / setup.cfg

Download this file

30 lines (29 with data), 882 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
26
27
28
29
30
[isort]
profile = black
line_length=100
multi_line_output=3
include_trailing_comma=True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
extra_standard_library=setuptools,mock,yaml
skip=docs,setup.py
skip_glob=*/__init__.py
known_myself=dosma
known_third_party=h5py,numpy,natsort,nested-lookup,nibabel,nipype,pandas,pydicom,skimage,scipy,seaborn,SimpleITK,packaging,Pmw,tabulate,termcolor,tqdm
no_lines_before=STDLIB
sections=FUTURE,STDLIB,THIRDPARTY,MYSELF,FIRSTPARTY,LOCALFOLDER
default_section=FIRSTPARTY
[mypy]
python_version=3.6
ignore_missing_imports = True
warn_unused_configs = True
disallow_untyped_defs = True
check_untyped_defs = True
warn_unused_ignores = True
warn_redundant_casts = True
show_column_numbers = True
follow_imports = silent
allow_redefinition = True
; Require all functions to be annotated
disallow_incomplete_defs = True