Skip to content

Commit

Permalink
Add .tox to PROJECT_PYTHON_DIRS (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Dec 7, 2023
1 parent ce985a7 commit 05f0600
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kondo-lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@ const PROJECT_UNREAL_DIRS: [&str; 5] = [
"Intermediate",
];
const PROJECT_JUPYTER_DIRS: [&str; 1] = [".ipynb_checkpoints"];
const PROJECT_PYTHON_DIRS: [&str; 7] = [
const PROJECT_PYTHON_DIRS: [&str; 8] = [
".mypy_cache",
".nox",
".pytest_cache",
".ruff_cache",
".tox",
".venv",
"__pycache__",
"__pypackages__",
Expand Down

0 comments on commit 05f0600

Please sign in to comment.