2025-02-09 21:33:11 +01:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2025-02-09 21:36:17 +01:00
|
|
|
import importlib.metadata
|
2025-02-09 21:10:22 +01:00
|
|
|
|
|
|
|
CONFIG_FILE = '.pre-commit-config.yaml'
|
|
|
|
MANIFEST_FILE = '.pre-commit-hooks.yaml'
|
|
|
|
|
|
|
|
# Bump when modifying `empty_template`
|
|
|
|
LOCAL_REPO_VERSION = '1'
|
|
|
|
|
2025-02-09 21:36:17 +01:00
|
|
|
VERSION = importlib.metadata.version('pre_commit')
|
2025-02-09 21:10:22 +01:00
|
|
|
|
|
|
|
DEFAULT = 'default'
|