Skip to main content

Update the list of files I consider safe to delete

ID
9cf1631
date
2024-12-01 20:43:31+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
1539210
message
Update the list of files I consider safe to delete
changed files
1 file, 12 additions, 3 deletions

Changed files

README.md (3223) → README.md (3575)

diff --git a/README.md b/README.md
index da03051..ca454b6 100644
--- a/README.md
+++ b/README.md
@@ -90,9 +90,18 @@ $ emptydir
 
 Currently the list of files/folders which I consider safe to delete is hard-coded in `can_be_deleted.rs`:
 
-*   `.DS_Store` stores some folder attributes used for showing the folder in the Finder, which I don't need to keep
-*   `__pycache__` is the bytecode cache in Python projects, which is pointless if the original Python files have been removed
-*   `.venv` is the name I use for virtual environments, which I can asily regenerate if necessary
+*  .DS_Store stores some folder attributes used for showing the folder
+   in the Finder, which I don't need to keep
+*  `.ipynb_checkpoints` is a folder used by Jupyter Notebooks, but not
+   important if I've deleted the notebooks
+*  `.jekyll-cache` is a cache directory used by Jekyll sites, but
+   can be easily regenerated and will be rebuilt regularly as part
+   of the Jekyll build process
+*  `.venv` is the name I use for virtual environments, which I can
+   easily regenerate if necessary
+*  `__pycache__` is the bytecode cache in Python projects, which is
+   pointless if the original Python files have been removed
+*  `Thumbs.db` is a file that contains thumbnails on Windows systems
 
 If you want to change that list, you need to modify the source code and compile a new version -- it's not a configurable setting.