mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-04-16 02:21:46 +04:00
7 lines
314 B
Python
7 lines
314 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/avlos/dotfiles/'
|
|
GITHUB_DOTFILES_REPOSITORY_BRANCH = 'some_branch_to_get_from_command_flag_for_development'
|