mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-14 13:00:10 -06:00
16 lines
333 B
Python
16 lines
333 B
Python
from __future__ import unicode_literals
|
|
|
|
|
|
CONFIG_FILE = '.pre-commit-config.yaml'
|
|
|
|
# In 0.12.0, the default file was changed to be namespaced
|
|
MANIFEST_FILE = '.pre-commit-hooks.yaml'
|
|
MANIFEST_FILE_LEGACY = 'hooks.yaml'
|
|
|
|
YAML_DUMP_KWARGS = {
|
|
'default_flow_style': False,
|
|
# Use unicode
|
|
'encoding': None,
|
|
'indent': 4,
|
|
}
|