Skip to content

Commit

Permalink
include codemods.py in the typecheck and linter config
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenham committed Oct 17, 2024
1 parent 76f46bf commit 101fd22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ name = "scipy-stubs"
packages = [{include = "scipy-stubs"}]
readme = "README.md"
repository = "https://github.com/jorenham/scipy-stubs/"
version = "1.14.1.0"
version = "1.14.1.1.dev0"

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/jorenham/scipy-stubs/issues"
Expand Down Expand Up @@ -105,7 +105,7 @@ disallow_incomplete_defs = false # TODO
warn_unused_ignores = true

[tool.pyright]
include = ["scipy-stubs", "tests/typetests"]
include = ["scipy-stubs", "tests/typetests", "codemods.py"]
venv = ".venv"
venvPath = "."
stubPath = "."
Expand All @@ -129,7 +129,7 @@ force-exclude = true
target-version = "py310"
# https://typing.readthedocs.io/en/latest/guides/writing_stubs.html#maximum-line-length
line-length = 130
src = ["scipy-stubs"]
src = ["scipy-stubs", "codemods.py"]

[tool.ruff.format]
line-ending = "lf"
Expand Down

0 comments on commit 101fd22

Please sign in to comment.