linter fixes
This commit is contained in:
parent
e2c91076f7
commit
1849075b11
26 changed files with 152 additions and 104 deletions
|
|
@ -74,6 +74,18 @@ lint.ignore = [
|
|||
"TRY003", # Long exception message
|
||||
]
|
||||
|
||||
[tool.ruff.lint.per-file-ignores]
|
||||
"inire/tests/*.py" = ["ANN", "ARG005", "PT009"]
|
||||
|
||||
[tool.mypy]
|
||||
python_version = "3.11"
|
||||
warn_unused_configs = true
|
||||
exclude = ["^examples/", "^inire/tests/"]
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = ["scipy.*"]
|
||||
ignore_missing_imports = true
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
addopts = "-rsXx"
|
||||
testpaths = ["inire"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue