-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
42 lines (35 loc) · 880 Bytes
/
pyproject.toml
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
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[[tool.mypy.overrides]]
module = [
'mashumaro.mixins.dict',
'mashumaro.mixins.msgpack',
'mashumaro.mixins.toml',
'mashumaro.codecs.*',
]
disable_error_code = 'empty-body'
[[tool.mypy.overrides]]
module = [
'mashumaro.core.meta.types.pack',
'mashumaro.core.meta.types.unpack',
'mashumaro.jsonschema.schema',
]
disable_error_code = 'return'
[tool.isort]
profile = 'black'
line_length = 79
multi_line_output = 3
include_trailing_comma = true
ensure_newline_before_comments = true
[tool.black]
line-length = 79
target-version = ['py39', 'py310', 'py311', 'py312']
[tool.ruff]
line-length = 79
[tool.coverage.run]
omit = ["setup.py"]
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "@overload", "@abstractmethod"]
ignore_errors = true