-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (46 loc) · 1.08 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[flake8]
max-line-length = 88
exclude =
.git
venv
__pycache__
; see error codes: https://flake8.pycqa.org/en/latest/user/error-codes.html
ignore = F541,W503,
E402,#module level import not at top of file
[isort]
line_length = 88
include_trailing_comma = True
multi_line_output = 3
force_grid_wrap = 0
combine_as_imports = True
lines_after_imports = 2
[tool:pytest]
testpaths = tests
filterwarnings =
error
ignore::DeprecationWarning
markers =
serial: run these tests non-parallel
[mypy]
check_untyped_defs = False
disallow_any_generics = False
disallow_untyped_defs = False
disallow_untyped_calls = False
disallow_incomplete_defs = False
disallow_any_unimported = False
ignore_missing_imports = False
follow_imports = skip
warn_redundant_casts = True
warn_unused_ignores = True
strict_optional = False
no_implicit_optional = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-albumentations.*]
ignore_missing_imports = True
[mypy-PIL.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True