Skip to content

Commit

Permalink
move ruff and mypy caches into pre-commit cache folder
Browse files Browse the repository at this point in the history
  • Loading branch information
gboeing committed Dec 29, 2024
1 parent adde657 commit 1227a18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ packages = ["osmnx"]
path = "osmnx/_version.py"

[tool.mypy]
cache_dir = "~/.cache/mypy"
cache_dir = "~/.cache/pre-commit/mypy"
ignore_missing_imports = true
python_version = "3.9"
strict = true
warn_no_return = true
warn_unreachable = true

[tool.ruff]
cache-dir = "~/.cache/ruff"
cache-dir = "~/.cache/pre-commit/ruff"
exclude = ["build/*"]
line-length = 100

Expand Down

0 comments on commit 1227a18

Please sign in to comment.