mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
6 lines
226 B
Python
6 lines
226 B
Python
from pathlib import Path
|
|
|
|
HOME_DIRECTORY = str(Path.home())
|
|
CONFIG_FILE = '.pre-commit-config.yaml'
|
|
DEFAULT_CONFIG_FILE = HOME_DIRECTORY + '/' + CONFIG_FILE
|
|
GITHUB_DOTFILES_REPOSITORY = 'https://github.com/thehomli/dotfiles/'
|