summaryrefslogtreecommitdiffstats
path: root/pre_commit/commands/clean.py
diff options
context:
space:
mode:
Diffstat (limited to 'pre_commit/commands/clean.py')
-rw-r--r--pre_commit/commands/clean.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/pre_commit/commands/clean.py b/pre_commit/commands/clean.py
new file mode 100644
index 0000000..2be6c16
--- /dev/null
+++ b/pre_commit/commands/clean.py
@@ -0,0 +1,14 @@
+import os.path
+
+from pre_commit import output
+from pre_commit.store import Store
+from pre_commit.util import rmtree
+
+
+def clean(store: Store) -> int:
+ legacy_path = os.path.expanduser('~/.pre-commit')
+ for directory in (store.directory, legacy_path):
+ if os.path.exists(directory):
+ rmtree(directory)
+ output.write_line(f'Cleaned {directory}.')
+ return 0