@@ -77,7 +77,7 @@ const initialCategories: DeveloperCategory[] = [
7777 detectionFiles: [' main.py' , ' requirements.txt' , ' pyproject.toml' , ' .venv/' , ' *.py' ],
7878 cachePatterns: [' __pycache__/' , ' .pytest_cache/' , ' .mypy_cache/' , ' .tox/' , ' .hypothesis/' , ' .coverage' , ' build/' , ' dist/' ],
7979 warning: true ,
80- warningText: ' venv/ might be the main virtual environment – be careful if no lockfile exists '
80+ warningText: ' '
8181 },
8282 {
8383 id: ' nodejs' ,
@@ -86,7 +86,7 @@ const initialCategories: DeveloperCategory[] = [
8686 detectionFiles: [' package.json' , ' yarn.lock' , ' vite.config.js' , ' next.config.js' , ' tsconfig.json' ],
8787 cachePatterns: [' node_modules/' , ' dist/' , ' build/' , ' .next/' , ' .nuxt/' , ' .angular/' , ' .vite/' , ' .turbo/' , ' .expo/' , ' .parcel-cache/' , ' .eslintcache' , ' .cache/' ],
8888 warning: true ,
89- warningText: ' node_modules/ may exist in subfolders if using monorepos '
89+ warningText: ' '
9090 },
9191 {
9292 id: ' unity' ,
@@ -95,7 +95,7 @@ const initialCategories: DeveloperCategory[] = [
9595 detectionFiles: [' Assets/' , ' ProjectSettings/' , ' Packages/' , ' *.unity' ],
9696 cachePatterns: [' Library/' , ' Temp/' , ' Obj/' , ' Build/' , ' Builds/' , ' .vs/' , ' Logs/' , ' MemoryCaptures/' , ' UserSettings/' ],
9797 warning: true ,
98- warningText: ' Library/ is only needed at the Unity project root — safe elsewhere '
98+ warningText: ' '
9999 },
100100 {
101101 id: ' unreal' ,
@@ -104,7 +104,7 @@ const initialCategories: DeveloperCategory[] = [
104104 detectionFiles: [' *.uproject' , ' Source/' , ' Content/' ],
105105 cachePatterns: [' Binaries/' , ' Build/' , ' Intermediate/' , ' Saved/' , ' DerivedDataCache/' , ' Plugins/**/Intermediate/' , ' Plugins/**/Binaries/' ],
106106 warning: true ,
107- warningText: ' Saved/Config/ might contain useful settings — review before deleting '
107+ warningText: ' '
108108 },
109109 {
110110 id: ' rust' ,
@@ -121,7 +121,7 @@ const initialCategories: DeveloperCategory[] = [
121121 detectionFiles: [' build.gradle' , ' pom.xml' , ' AndroidManifest.xml' , ' src/main/java/' ],
122122 cachePatterns: [' build/' , ' out/' , ' .gradle/' , ' .idea/' , ' target/' , ' .settings/' ],
123123 warning: true ,
124- warningText: ' .idea/ may contain custom settings — remove only cache/temp files inside '
124+ warningText: ' '
125125 },
126126 {
127127 id: ' dotnet' ,
@@ -138,7 +138,7 @@ const initialCategories: DeveloperCategory[] = [
138138 detectionFiles: [' CMakeLists.txt' , ' Makefile' , ' .vscode/launch.json' , ' *.cpp' , ' *.h' ],
139139 cachePatterns: [' build/' , ' CMakeFiles/' , ' cmake-build-debug/' , ' cmake-build-release/' , ' Debug/' , ' Release/' ],
140140 warning: true ,
141- warningText: ' build/ might be used manually — check first '
141+ warningText: ' '
142142 },
143143 {
144144 id: ' xcode' ,
@@ -147,7 +147,7 @@ const initialCategories: DeveloperCategory[] = [
147147 detectionFiles: [' *.xcodeproj' , ' Info.plist' , ' Podfile' , ' *.swift' ],
148148 cachePatterns: [' DerivedData/' , ' build/' , ' *.xcuserdata/' , ' *.xcuserdatad/' ],
149149 warning: true ,
150- warningText: ' Global DerivedData/ lives in ~/Library/Developer/Xcode/DerivedData '
150+ warningText: ' '
151151 },
152152 {
153153 id: ' php' ,
@@ -156,7 +156,7 @@ const initialCategories: DeveloperCategory[] = [
156156 detectionFiles: [' artisan' , ' composer.json' , ' routes/web.php' , ' app/' ],
157157 cachePatterns: [' vendor/' , ' bootstrap/cache/' , ' storage/framework/cache/' , ' .phpunit.result.cache' ],
158158 warning: true ,
159- warningText: ' Only delete vendor/ if composer.lock is present '
159+ warningText: ' '
160160 },
161161 {
162162 id: ' symfony' ,
@@ -173,7 +173,7 @@ const initialCategories: DeveloperCategory[] = [
173173 detectionFiles: [' .ipynb' , ' notebooks/' , ' train.py' , ' requirements.txt' , ' wandb/' ],
174174 cachePatterns: [' checkpoints/' , ' runs/' , ' logs/' , ' .ipynb_checkpoints/' , ' .cache/' , ' wandb/' , ' mlruns/' ],
175175 warning: true ,
176- warningText: " Don't delete checkpoints unless you're sure they're not needed "
176+ warningText: ' '
177177 },
178178 {
179179 id: ' docker' ,
@@ -206,7 +206,7 @@ const initialCategories: DeveloperCategory[] = [
206206 detectionFiles: [' .idea/' , ' .vscode/' , ' .history/' , ' *.sublime-*' , ' .DS_Store' ],
207207 cachePatterns: [' .idea/workspace.xml' , ' .idea/caches/' , ' .vscode/ipch/' , ' .DS_Store' , ' Thumbs.db' ],
208208 warning: true ,
209- warningText: " Don't remove .idea/modules.xml or .vscode/settings.json if project-specific "
209+ warningText: ' '
210210 }
211211]
212212
0 commit comments