1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 17:24:45 +00:00

chore: auto format code

This commit is contained in:
Tw93
2025-12-31 08:24:02 +00:00
parent 9aa569cbb6
commit 1e8ff30fa1
2 changed files with 8 additions and 8 deletions

View File

@@ -883,11 +883,11 @@ perform_cleanup() {
local summary_heading=""
local summary_status="success"
if [[ "$DRY_RUN" == "true" ]]; then
summary_heading="Dry run complete - no changes made"
else
summary_heading="Cleanup complete"
fi
if [[ "$DRY_RUN" == "true" ]]; then
summary_heading="Dry run complete - no changes made"
else
summary_heading="Cleanup complete"
fi
local -a summary_details=()

View File

@@ -48,10 +48,10 @@ func isHandledByMoClean(path string) bool {
// Project dependency and build directories.
var projectDependencyDirs = map[string]bool{
// JavaScript/Node.
"node_modules": true,
"node_modules": true,
"bower_components": true,
".yarn": true,
".pnpm-store": true,
".yarn": true,
".pnpm-store": true,
// Python.
"venv": true,