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