mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 00:04:42 +04:00
Refactor pre_commit.repository and factor out cached-property
This commit is contained in:
parent
7448e588ff
commit
c577ed92e7
14 changed files with 390 additions and 446 deletions
|
|
@ -10,6 +10,15 @@ from pre_commit import git
|
|||
from pre_commit.clientlib import load_config
|
||||
from pre_commit.clientlib import MANIFEST_HOOK_DICT
|
||||
from pre_commit.commands.run import _filter_by_types
|
||||
from pre_commit.meta_hooks.helpers import make_meta_entry
|
||||
|
||||
HOOK_DICT = {
|
||||
'id': 'check-useless-excludes',
|
||||
'name': 'Check for useless excludes',
|
||||
'files': C.CONFIG_FILE,
|
||||
'language': 'system',
|
||||
'entry': make_meta_entry(__name__),
|
||||
}
|
||||
|
||||
|
||||
def exclude_matches_any(filenames, include, exclude):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue