We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c624dae commit e62f784Copy full SHA for e62f784
pyproject.toml
@@ -105,10 +105,9 @@ exclude_lines = [
105
106
[tool.mypy]
107
strict = true
108
-
109
-# [[tool.mypy.overrides]]
110
-# module = "shellingham"
111
-# ignore_missing_imports = true
+exclude = [
+ "tests/assets/*",
+]
112
113
[tool.ruff.lint]
114
select = [
scripts/lint.sh
@@ -3,6 +3,6 @@
3
set -e
4
set -x
5
6
-mypy src tests scripts
+mypy src tests
7
ruff check src tests scripts
8
ruff format src tests --check
0 commit comments