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 0eec50f commit 6964d06Copy full SHA for 6964d06
pyproject.toml
@@ -27,3 +27,20 @@ mypy-protobuf = ">=3.4"
27
[build-system]
28
requires = ["poetry-core>=1.8.0"]
29
build-backend = "poetry.core.masonry.api"
30
+
31
+[tool.mypy]
32
+files = "examples/,src/nipanel/,tests/"
33
+namespace_packages = true
34
+strict = true
35
36
+[[tool.mypy.overrides]]
37
+module = [
38
+ # https://github.com/ni/hightime/issues/4 - Add type annotations
39
+ "hightime.*",
40
+]
41
+ignore_missing_imports = true
42
43
+[tool.bandit]
44
+skips = [
45
+ "B101", # assert_used
46
0 commit comments