mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
13 lines
344 B
Python
13 lines
344 B
Python
import os.path
|
|
|
|
from pre_commit import output
|
|
from pre_commit.util import rmtree
|
|
|
|
|
|
def clean(store):
|
|
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
|