mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 00:04:42 +04:00
13 lines
282 B
Python
13 lines
282 B
Python
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'
|