blob: 79a9bb6927d1aa57b9addc635ad91c71ce33b914 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from __future__ import annotations
import importlib.metadata
CONFIG_FILE = '.pre-commit-config.yaml'
MANIFEST_FILE = '.pre-commit-hooks.yaml'
# Bump when modifying `empty_template`
LOCAL_REPO_VERSION = '1'
VERSION = importlib.metadata.version('pre_commit')
DEFAULT = 'default'
|