forked from equinor/tagreader-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
39 lines (34 loc) · 956 Bytes
/
setup.cfg
File metadata and controls
39 lines (34 loc) · 956 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
[flake8]
max-line-length = 88
select = B,C,E,F,W
ignore =
# https://black.readthedocs.io/en/stable/the_black_code_style.html#slices
E203
# https://black.readthedocs.io/en/stable/the_black_code_style.html#line-breaks-binary-operators
W503
[mypy]
files = tagreader
check_untyped_defs = True
disallow_any_generics = True
# disallow_untyped_calls = True
disallow_untyped_defs = True
ignore_missing_imports = True
# Temporary fix for https://github.com/python/mypy/issues/10709:
ignore_missing_imports_per_module = True
implicit_reexport = False
local_partial_types = True
# no_implicit_optional = True
strict_equality = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_return_any = True
warn_unreachable = True
warn_unused_configs = True
[mypy-tagreader.clients]
ignore_errors = True
[mypy-tagreader.odbc_handlers]
ignore_errors = True
[mypy-tagreader.utils]
ignore_errors = True
[mypy-tagreader.web_handlers]
ignore_errors = True