blob: 2be6c16a58b5f89162f387acf0937db0c62826fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|