mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-13 12:30:08 -06:00
14 lines
226 B
Python
14 lines
226 B
Python
from __future__ import unicode_literals
|
|
|
|
|
|
CONFIG_FILE = '.pre-commit-config.yaml'
|
|
|
|
MANIFEST_FILE = 'hooks.yaml'
|
|
|
|
YAML_DUMP_KWARGS = {
|
|
'default_flow_style': False,
|
|
# Use unicode
|
|
'encoding': None,
|
|
'indent': 4,
|
|
}
|