Skip to content

Commit 3818fc6

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 1488fff commit 3818fc6

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

pyproject.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,17 @@ lint.isort.lines-after-imports = 2
137137
lint.pydocstyle.convention = "numpy"
138138
lint.future-annotations = true
139139

140+
[tool.mypy]
141+
strict = true
142+
# https://github.com/dask/dask/issues/8853
143+
implicit_reexport = true
144+
explicit_package_bases = true
145+
mypy_path = [ "$MYPY_CONFIG_FILE_DIR/typings", "$MYPY_CONFIG_FILE_DIR/src" ]
146+
147+
[tool.pyright]
148+
stubPath = "./typings"
149+
reportPrivateUsage = false
150+
140151
[tool.pytest]
141152
strict = true
142153
addopts = [
@@ -169,14 +180,3 @@ run.omit = [ "src/testing/*", "tests/*" ]
169180
report.exclude_also = [ "@numba[.]njit", "[.]{3}", "if TYPE_CHECKING:" ]
170181
html.directory = "test-data/htmlcov"
171182
xml.output = "test-data/coverage.xml"
172-
173-
[tool.mypy]
174-
strict = true
175-
# https://github.com/dask/dask/issues/8853
176-
implicit_reexport = true
177-
explicit_package_bases = true
178-
mypy_path = [ "$MYPY_CONFIG_FILE_DIR/typings", "$MYPY_CONFIG_FILE_DIR/src" ]
179-
180-
[tool.pyright]
181-
stubPath = "./typings"
182-
reportPrivateUsage = false

0 commit comments

Comments
 (0)