1
0
Fork 0
pre-commit/pre_commit/constants.py

14 lines
282 B
Python
Raw Normal View History

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'