-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 826 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
[tool.interrogate]
ignore-init-method = true
ignore-init-module = true
ignore-magic = true
ignore-module = true
ignore-nested-functions = true
ignore-nested-classes = true
ignore-private = true
ignore-semiprivate = true
omit-covered-files = true
verbose = 0
exclude = ["tests"]
[tool.mypy]
plugins = ["sqlmypy"]
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
check_untyped_defs = true
follow_imports = "silent"
files = [
"opentaxii/",
"tests/",
]
exclude = """
(?x)(
^opentaxii/taxii/.+
| ^opentaxii/utils\\.py$
| ^opentaxii/common/entities\\.py$
)
"""
[tool.black]
line-length = 88
skip_string_normalization = true
target_version = ["py310", "py311"]
[tool.isort]
profile = "black"