Skip to content

Commit

Permalink
Added more directories to clean up for Python (tbillington#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
trag1c committed Jun 21, 2023
1 parent 86c2cbe commit 9a9471d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion kondo-lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,15 @@ const PROJECT_UNREAL_DIRS: [&str; 5] = [
"Intermediate",
];
const PROJECT_JUPYTER_DIRS: [&str; 1] = [".ipynb_checkpoints"];
const PROJECT_PYTHON_DIRS: [&str; 3] = ["__pycache__", "__pypackages__", ".venv"];
const PROJECT_PYTHON_DIRS: [&str; 7] = [
".mypy_cache",
".nox",
".pytest_cache",
".ruff_cache",
".venv",
"__pycache__",
"__pypackages__",
];
const PROJECT_COMPOSER_DIRS: [&str; 1] = ["vendor"];
const PROJECT_PUB_DIRS: [&str; 4] = [
"build",
Expand Down

0 comments on commit 9a9471d

Please sign in to comment.