forked from mehak-agr/wsl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
45 lines (35 loc) · 831 Bytes
/
setup.cfg
File metadata and controls
45 lines (35 loc) · 831 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[flake8]
max-line-length = 120
exclude =
.git,
.ipynb_checkpoints,
__pycache__
ignore = D, # various docstring related
I, # import ordering and spacing
N803, # naming with capitals
N806,
N813,
W503, # line breaks before / after binary operators
W504,
E501 # line too long
[pydocstyle]
convention = numpy
[mypy]
check_untyped_defs = True
allow_redefinition = True
[mypy-pydicom.*]
ignore_missing_imports = True
[mypy-git.*]
ignore_missing_imports = True
[mypy-torchvision.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-SimpleITK]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-skimage.*]
ignore_missing_imports = True
[mypy-sklearn.*]
ignore_missing_imports = True