tbillington / kondo

Cleans dependencies and build artifacts from your projects.
MIT License
1.76k stars 51 forks source link

Add directories to delete for Python #47

Closed pawamoy closed 3 years ago

pawamoy commented 3 years ago

I guess this is all that is needed?

Implements #44

tbillington commented 3 years ago

Yep that should be all that's required :)

Looks like it the linter would prefer you keep them on the same line :D

-const PROJECT_PYTHON_DIRS: [&str; 3] = [
-    "__pycache__",
-    "__pypackages__",
-    ".venv",
-];
+const PROJECT_PYTHON_DIRS: [&str; 3] = ["__pycache__", "__pypackages__", ".venv"];
pawamoy commented 3 years ago

Fixed it directly within GitHub's interface, don't forget to squash before merging/rebasing :slightly_smiling_face: