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.
pyproject.toml
1 parent b9a833d commit 89dccfcCopy full SHA for 89dccfc
pyproject.toml
@@ -57,6 +57,33 @@ dev = [
57
]
58
59
60
+[tool.mypy]
61
+exclude = [
62
+ "^benchmarks/.*",
63
+ "^doc/.*",
64
+ "^docweb/.*",
65
+ "^numpy_financial/tests/.*",
66
+]
67
+enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
68
+local_partial_types = true
69
+warn_unreachable = false
70
+warn_unused_ignores = true
71
+strict_bytes = true
72
+
73
74
+[tool.pyright]
75
+pythonPlatform = "All"
76
+include = ["numpy_financial"]
77
78
+ "benchmarks",
79
+ "doc",
80
+ "docweb",
81
+ "numpy_financial/tests",
82
83
+stubPath = "."
84
+typeCheckingMode = "standard"
85
86
87
[tool.spin]
88
package = 'numpy_financial'
89
0 commit comments