pre-commit/pre_commit/constants.py
2014-06-15 17:00:35 -07:00

10 lines
184 B
Python

CONFIG_FILE = '.pre-commit-config.yaml'
MANIFEST_FILE = 'hooks.yaml'
YAML_DUMP_KWARGS = {
'default_flow_style': False,
# Use unicode
'encoding': None,
'indent': 4,
}