forked from samuelcolvin/watchfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (39 loc) · 878 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
43
44
45
46
[build-system]
requires = ['setuptools', 'wheel', 'setuptools-rust']
[tool.pytest.ini_options]
testpaths = 'tests'
log_format = '%(name)s %(levelname)s: %(message)s'
filterwarnings = 'error'
timeout = 10
[tool.coverage.run]
source = ['watchfiles']
branch = true
[tool.coverage.report]
precision = 2
exclude_lines = [
'pragma: no cover',
'raise NotImplementedError',
'raise NotImplemented',
'if TYPE_CHECKING:',
'@overload',
]
omit = ['*/__main__.py']
[tool.black]
color = true
line-length = 120
target-version = ['py39']
skip-string-normalization = true
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
color_output = true
[tool.mypy]
strict = true
warn_return_any = false
show_error_codes = true
[[tool.mypy.overrides]]
module = ['trio.*']
ignore_missing_imports = true