FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pre-commit/pre_commit/clientlib.py at main · pre-commit/pre-commit · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pre-commit
/
pre-commit
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
1k
Star
15.5k
Code
Issues
18
Pull requests
8
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
pre-commit
/
pre_commit
/
clientlib.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
551 lines (444 loc) · 16.4 KB
Breadcrumbs
pre-commit
/
pre_commit
/
clientlib.py
Copy path
File metadata and controls
551 lines (444 loc) · 16.4 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
from
__future__
import
annotations
import
functools
import
logging
import
os
.
path
import
re
import
shlex
import
sys
from
collections
.
abc
import
Callable
from
collections
.
abc
import
Sequence
from
typing
import
Any
from
typing
import
NamedTuple
import
cfgv
from
identify
.
identify
import
ALL_TAGS
import
pre_commit
.
constants
as
C
from
pre_commit
.
all_languages
import
language_names
from
pre_commit
.
errors
import
FatalError
from
pre_commit
.
yaml
import
yaml_load
logger
=
logging
.
getLogger
(
'pre_commit'
)
check_string_regex
=
cfgv
.
check_and
(
cfgv
.
check_string
,
cfgv
.
check_regex
)
HOOK_TYPES
=
(
'commit-msg'
,
'post-checkout'
,
'post-commit'
,
'post-merge'
,
'post-rewrite'
,
'pre-commit'
,
'pre-merge-commit'
,
'pre-push'
,
'pre-rebase'
,
'prepare-commit-msg'
,
)
# `manual` is not invoked by any installed git hook. See #719
STAGES
=
(
*
HOOK_TYPES
,
'manual'
)
def
check_type_tag
(
tag
:
str
)
->
None
:
if
tag
not
in
ALL_TAGS
:
raise
cfgv
.
ValidationError
(
f'Type tag
{
tag
!r
}
is not recognized. '
f'Try upgrading identify and pre-commit?'
,
)
def
parse_version
(
s
:
str
)
->
tuple
[
int
, ...]:
"""poor man's version comparison"""
return
tuple
(
int
(
p
)
for
p
in
s
.
split
(
'.'
))
def
check_min_version
(
version
:
str
)
->
None
:
if
parse_version
(
version
)
>
parse_version
(
C
.
VERSION
):
raise
cfgv
.
ValidationError
(
f'pre-commit version
{
version
}
is required but version '
f'
{
C
.
VERSION
}
is installed. '
f'Perhaps run `pip install --upgrade pre-commit`.'
,
)
_STAGES
=
{
'commit'
:
'pre-commit'
,
'merge-commit'
:
'pre-merge-commit'
,
'push'
:
'pre-push'
,
}
def
transform_stage
(
stage
:
str
)
->
str
:
return
_STAGES
.
get
(
stage
,
stage
)
MINIMAL_MANIFEST_SCHEMA
=
cfgv
.
Array
(
cfgv
.
Map
(
'Hook'
,
'id'
,
cfgv
.
Required
(
'id'
,
cfgv
.
check_string
),
cfgv
.
Optional
(
'stages'
,
cfgv
.
check_array
(
cfgv
.
check_string
), []),
),
)
def
warn_for_stages_on_repo_init
(
repo
:
str
,
directory
:
str
)
->
None
:
try
:
manifest
=
cfgv
.
load_from_filename
(
os
.
path
.
join
(
directory
,
C
.
MANIFEST_FILE
),
schema
=
MINIMAL_MANIFEST_SCHEMA
,
load_strategy
=
yaml_load
,
exc_tp
=
InvalidManifestError
,
)
except
InvalidManifestError
:
return
# they'll get a better error message when it actually loads!
legacy_stages
=
{}
# sorted set
for
hook
in
manifest
:
for
stage
in
hook
.
get
(
'stages'
, ()):
if
stage
in
_STAGES
:
legacy_stages
[
stage
]
=
True
if
legacy_stages
:
logger
.
warning
(
f'repo `
{
repo
}
` uses deprecated stage names '
f'(
{
", "
.
join
(
legacy_stages
)
}
) which will be removed in a '
f'future version. '
f'Hint: often `pre-commit autoupdate --repo
{
shlex
.
quote
(
repo
)
}
` '
f'will fix this. '
f'if it does not -- consider reporting an issue to that repo.'
,
)
class
StagesMigrationNoDefault
(
NamedTuple
):
key
:
str
default
:
Sequence
[
str
]
def
check
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
if
self
.
key
not
in
dct
:
return
with
cfgv
.
validate_context
(
f'At key:
{
self
.
key
}
'
):
val
=
dct
[
self
.
key
]
cfgv
.
check_array
(
cfgv
.
check_any
)(
val
)
val
=
[
transform_stage
(
v
)
for
v
in
val
]
cfgv
.
check_array
(
cfgv
.
check_one_of
(
STAGES
))(
val
)
def
apply_default
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
if
self
.
key
not
in
dct
:
return
dct
[
self
.
key
]
=
[
transform_stage
(
v
)
for
v
in
dct
[
self
.
key
]]
def
remove_default
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
raise
NotImplementedError
class
StagesMigration
(
StagesMigrationNoDefault
):
def
apply_default
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
dct
.
setdefault
(
self
.
key
,
self
.
default
)
super
().
apply_default
(
dct
)
class
DeprecatedStagesWarning
(
NamedTuple
):
key
:
str
def
check
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
if
self
.
key
not
in
dct
:
return
val
=
dct
[
self
.
key
]
cfgv
.
check_array
(
cfgv
.
check_any
)(
val
)
legacy_stages
=
[
stage
for
stage
in
val
if
stage
in
_STAGES
]
if
legacy_stages
:
logger
.
warning
(
f'hook id `
{
dct
[
"id"
]
}
` uses deprecated stage names '
f'(
{
", "
.
join
(
legacy_stages
)
}
) which will be removed in a '
f'future version. '
f'run: `pre-commit migrate-config` to automatically fix this.'
,
)
def
apply_default
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
pass
def
remove_default
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
raise
NotImplementedError
class
DeprecatedDefaultStagesWarning
(
NamedTuple
):
key
:
str
def
check
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
if
self
.
key
not
in
dct
:
return
val
=
dct
[
self
.
key
]
cfgv
.
check_array
(
cfgv
.
check_any
)(
val
)
legacy_stages
=
[
stage
for
stage
in
val
if
stage
in
_STAGES
]
if
legacy_stages
:
logger
.
warning
(
f'top-level `default_stages` uses deprecated stage names '
f'(
{
", "
.
join
(
legacy_stages
)
}
) which will be removed in a '
f'future version. '
f'run: `pre-commit migrate-config` to automatically fix this.'
,
)
def
apply_default
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
pass
def
remove_default
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
raise
NotImplementedError
def
_translate_language
(
name
:
str
)
->
str
:
return
{
'system'
:
'unsupported'
,
'script'
:
'unsupported_script'
,
}.
get
(
name
,
name
)
class
LanguageMigration
(
NamedTuple
):
# remove
key
:
str
check_fn
:
Callable
[[
object
],
None
]
def
check
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
if
self
.
key
not
in
dct
:
return
with
cfgv
.
validate_context
(
f'At key:
{
self
.
key
}
'
):
self
.
check_fn
(
_translate_language
(
dct
[
self
.
key
]))
def
apply_default
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
if
self
.
key
not
in
dct
:
return
dct
[
self
.
key
]
=
_translate_language
(
dct
[
self
.
key
])
def
remove_default
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
raise
NotImplementedError
class
LanguageMigrationRequired
(
LanguageMigration
):
# replace with Required
def
check
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
if
self
.
key
not
in
dct
:
raise
cfgv
.
ValidationError
(
f'Missing required key:
{
self
.
key
}
'
)
super
().
check
(
dct
)
MANIFEST_HOOK_DICT
=
cfgv
.
Map
(
'Hook'
,
'id'
,
# check first in case it uses some newer, incompatible feature
cfgv
.
Optional
(
'minimum_pre_commit_version'
,
cfgv
.
check_and
(
cfgv
.
check_string
,
check_min_version
),
'0'
,
),
cfgv
.
Required
(
'id'
,
cfgv
.
check_string
),
cfgv
.
Required
(
'name'
,
cfgv
.
check_string
),
cfgv
.
Required
(
'entry'
,
cfgv
.
check_string
),
LanguageMigrationRequired
(
'language'
,
cfgv
.
check_one_of
(
language_names
)),
cfgv
.
Optional
(
'alias'
,
cfgv
.
check_string
,
''
),
cfgv
.
Optional
(
'files'
,
check_string_regex
,
''
),
cfgv
.
Optional
(
'exclude'
,
check_string_regex
,
'^$'
),
cfgv
.
Optional
(
'types'
,
cfgv
.
check_array
(
check_type_tag
), [
'file'
]),
cfgv
.
Optional
(
'types_or'
,
cfgv
.
check_array
(
check_type_tag
), []),
cfgv
.
Optional
(
'exclude_types'
,
cfgv
.
check_array
(
check_type_tag
), []),
cfgv
.
Optional
(
'additional_dependencies'
,
cfgv
.
check_array
(
cfgv
.
check_string
), [],
),
cfgv
.
Optional
(
'args'
,
cfgv
.
check_array
(
cfgv
.
check_string
), []),
cfgv
.
Optional
(
'always_run'
,
cfgv
.
check_bool
,
False
),
cfgv
.
Optional
(
'fail_fast'
,
cfgv
.
check_bool
,
False
),
cfgv
.
Optional
(
'pass_filenames'
,
cfgv
.
check_bool
,
True
),
cfgv
.
Optional
(
'description'
,
cfgv
.
check_string
,
''
),
cfgv
.
Optional
(
'language_version'
,
cfgv
.
check_string
,
C
.
DEFAULT
),
cfgv
.
Optional
(
'log_file'
,
cfgv
.
check_string
,
''
),
cfgv
.
Optional
(
'require_serial'
,
cfgv
.
check_bool
,
False
),
StagesMigration
(
'stages'
, []),
cfgv
.
Optional
(
'verbose'
,
cfgv
.
check_bool
,
False
),
)
MANIFEST_SCHEMA
=
cfgv
.
Array
(
MANIFEST_HOOK_DICT
)
class
InvalidManifestError
(
FatalError
):
pass
def
_load_manifest_forward_compat
(
contents
:
str
)
->
object
:
obj
=
yaml_load
(
contents
)
if
isinstance
(
obj
,
dict
):
check_min_version
(
'5'
)
raise
AssertionError
(
'unreachable'
)
else
:
return
obj
load_manifest
=
functools
.
partial
(
cfgv
.
load_from_filename
,
schema
=
MANIFEST_SCHEMA
,
load_strategy
=
_load_manifest_forward_compat
,
exc_tp
=
InvalidManifestError
,
)
LOCAL
=
'local'
META
=
'meta'
class
WarnMutableRev
(
cfgv
.
Conditional
):
def
check
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
super
().
check
(
dct
)
if
self
.
key
in
dct
:
rev
=
dct
[
self
.
key
]
if
'.'
not
in
rev
and
not
re
.
match
(
r'^[a-fA-F0-9]+$'
,
rev
):
logger
.
warning
(
f'The
{
self
.
key
!r
}
field of repo
{
dct
[
"repo"
]!r
}
'
f'appears to be a mutable reference '
f'(moving tag / branch). Mutable references are never '
f'updated after first install and are not supported. '
f'See https://pre-commit.com/#using-the-latest-version-for-a-repository '
# noqa: E501
f'for more details. '
f'Hint: `pre-commit autoupdate` often fixes this.'
,
)
class
OptionalSensibleRegexAtHook
(
cfgv
.
OptionalNoDefault
):
def
check
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
super
().
check
(
dct
)
if
'/*'
in
dct
.
get
(
self
.
key
,
''
):
logger
.
warning
(
f'The
{
self
.
key
!r
}
field in hook
{
dct
.
get
(
"id"
)!r
}
is a '
f"regex, not a glob -- matching '/*' probably isn't what you "
f'want here'
,
)
for
fwd_slash_re
in
(
r'[\\/]'
,
r'[\/]'
,
r'[/\\]'
):
if
fwd_slash_re
in
dct
.
get
(
self
.
key
,
''
):
logger
.
warning
(
fr'pre-commit normalizes slashes in the
{
self
.
key
!r
}
'
fr'field in hook
{
dct
.
get
(
"id"
)!r
}
to forward slashes, '
fr'so you can use / instead of
{
fwd_slash_re
}
'
,
)
class
OptionalSensibleRegexAtTop
(
cfgv
.
OptionalNoDefault
):
def
check
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
super
().
check
(
dct
)
if
'/*'
in
dct
.
get
(
self
.
key
,
''
):
logger
.
warning
(
f'The top-level
{
self
.
key
!r
}
field is a regex, not a glob -- '
f"matching '/*' probably isn't what you want here"
,
)
for
fwd_slash_re
in
(
r'[\\/]'
,
r'[\/]'
,
r'[/\\]'
):
if
fwd_slash_re
in
dct
.
get
(
self
.
key
,
''
):
logger
.
warning
(
fr'pre-commit normalizes the slashes in the top-level '
fr'
{
self
.
key
!r
}
field to forward slashes, so you '
fr'can use / instead of
{
fwd_slash_re
}
'
,
)
def
_entry
(
modname
:
str
)
->
str
:
"""the hook `entry` is passed through `shlex.split()` by the command
runner, so to prevent issues with spaces and backslashes (on Windows)
it must be quoted here.
"""
return
f'
{
shlex
.
quote
(
sys
.
executable
)
}
-m pre_commit.meta_hooks.
{
modname
}
'
def
warn_unknown_keys_root
(
extra
:
Sequence
[
str
],
orig_keys
:
Sequence
[
str
],
dct
:
dict
[
str
,
str
],
)
->
None
:
logger
.
warning
(
f'Unexpected key(s) present at root:
{
", "
.
join
(
extra
)
}
'
)
def
warn_unknown_keys_repo
(
extra
:
Sequence
[
str
],
orig_keys
:
Sequence
[
str
],
dct
:
dict
[
str
,
str
],
)
->
None
:
logger
.
warning
(
f'Unexpected key(s) present on
{
dct
[
"repo"
]
}
:
{
", "
.
join
(
extra
)
}
'
,
)
_meta
=
(
(
'check-hooks-apply'
, (
(
'name'
,
'Check hooks apply to the repository'
),
(
'files'
,
f'^
{
re
.
escape
(
C
.
CONFIG_FILE
)
}
$'
),
(
'entry'
,
_entry
(
'check_hooks_apply'
)),
),
),
(
'check-useless-excludes'
, (
(
'name'
,
'Check for useless excludes'
),
(
'files'
,
f'^
{
re
.
escape
(
C
.
CONFIG_FILE
)
}
$'
),
(
'entry'
,
_entry
(
'check_useless_excludes'
)),
),
),
(
'identity'
, (
(
'name'
,
'identity'
),
(
'verbose'
,
True
),
(
'entry'
,
_entry
(
'identity'
)),
),
),
)
class
NotAllowed
(
cfgv
.
OptionalNoDefault
):
def
check
(
self
,
dct
:
dict
[
str
,
Any
])
->
None
:
if
self
.
key
in
dct
:
raise
cfgv
.
ValidationError
(
f'
{
self
.
key
!r
}
cannot be overridden'
)
_COMMON_HOOK_WARNINGS
=
(
OptionalSensibleRegexAtHook
(
'files'
,
cfgv
.
check_string
),
OptionalSensibleRegexAtHook
(
'exclude'
,
cfgv
.
check_string
),
DeprecatedStagesWarning
(
'stages'
),
)
META_HOOK_DICT
=
cfgv
.
Map
(
'Hook'
,
'id'
,
cfgv
.
Required
(
'id'
,
cfgv
.
check_string
),
cfgv
.
Required
(
'id'
,
cfgv
.
check_one_of
(
tuple
(
k
for
k
,
_
in
_meta
))),
# language must be `unsupported`
cfgv
.
Optional
(
'language'
,
cfgv
.
check_one_of
({
'unsupported'
}),
'unsupported'
,
),
# entry cannot be overridden
NotAllowed
(
'entry'
,
cfgv
.
check_any
),
*
(
# default to the hook definition for the meta hooks
cfgv
.
ConditionalOptional
(
key
,
cfgv
.
check_any
,
value
,
'id'
,
hook_id
)
for
hook_id
,
values
in
_meta
for
key
,
value
in
values
),
*
(
# default to the "manifest" parsing
cfgv
.
OptionalNoDefault
(
item
.
key
,
item
.
check_fn
)
# these will always be defaulted above
if
item
.
key
in
{
'name'
,
'language'
,
'entry'
}
else
item
for
item
in
MANIFEST_HOOK_DICT
.
items
),
*
_COMMON_HOOK_WARNINGS
,
)
CONFIG_HOOK_DICT
=
cfgv
.
Map
(
'Hook'
,
'id'
,
cfgv
.
Required
(
'id'
,
cfgv
.
check_string
),
# All keys in manifest hook dict are valid in a config hook dict, but
# are optional.
# No defaults are provided here as the config is merged on top of the
# manifest.
*
(
cfgv
.
OptionalNoDefault
(
item
.
key
,
item
.
check_fn
)
for
item
in
MANIFEST_HOOK_DICT
.
items
if
item
.
key
!=
'id'
if
item
.
key
!=
'stages'
if
item
.
key
!=
'language'
# remove
),
StagesMigrationNoDefault
(
'stages'
, []),
LanguageMigration
(
'language'
,
cfgv
.
check_one_of
(
language_names
)),
# remove
*
_COMMON_HOOK_WARNINGS
,
)
LOCAL_HOOK_DICT
=
cfgv
.
Map
(
'Hook'
,
'id'
,
*
MANIFEST_HOOK_DICT
.
items
,
*
_COMMON_HOOK_WARNINGS
,
)
CONFIG_REPO_DICT
=
cfgv
.
Map
(
'Repository'
,
'repo'
,
cfgv
.
Required
(
'repo'
,
cfgv
.
check_string
),
cfgv
.
ConditionalRecurse
(
'hooks'
,
cfgv
.
Array
(
CONFIG_HOOK_DICT
),
'repo'
,
cfgv
.
NotIn
(
LOCAL
,
META
),
),
cfgv
.
ConditionalRecurse
(
'hooks'
,
cfgv
.
Array
(
LOCAL_HOOK_DICT
),
'repo'
,
LOCAL
,
),
cfgv
.
ConditionalRecurse
(
'hooks'
,
cfgv
.
Array
(
META_HOOK_DICT
),
'repo'
,
META
,
),
WarnMutableRev
(
'rev'
,
cfgv
.
check_string
,
condition_key
=
'repo'
,
condition_value
=
cfgv
.
NotIn
(
LOCAL
,
META
),
ensure_absent
=
True
,
),
cfgv
.
WarnAdditionalKeys
((
'repo'
,
'rev'
,
'hooks'
),
warn_unknown_keys_repo
),
)
DEFAULT_LANGUAGE_VERSION
=
cfgv
.
Map
(
'DefaultLanguageVersion'
,
None
,
cfgv
.
NoAdditionalKeys
(
language_names
),
*
(
cfgv
.
Optional
(
x
,
cfgv
.
check_string
,
C
.
DEFAULT
)
for
x
in
language_names
),
)
CONFIG_SCHEMA
=
cfgv
.
Map
(
'Config'
,
None
,
# check first in case it uses some newer, incompatible feature
cfgv
.
Optional
(
'minimum_pre_commit_version'
,
cfgv
.
check_and
(
cfgv
.
check_string
,
check_min_version
),
'0'
,
),
cfgv
.
RequiredRecurse
(
'repos'
,
cfgv
.
Array
(
CONFIG_REPO_DICT
)),
cfgv
.
Optional
(
'default_install_hook_types'
,
cfgv
.
check_array
(
cfgv
.
check_one_of
(
HOOK_TYPES
)),
[
'pre-commit'
],
),
cfgv
.
OptionalRecurse
(
'default_language_version'
,
DEFAULT_LANGUAGE_VERSION
, {},
),
StagesMigration
(
'default_stages'
,
STAGES
),
DeprecatedDefaultStagesWarning
(
'default_stages'
),
cfgv
.
Optional
(
'files'
,
check_string_regex
,
''
),
cfgv
.
Optional
(
'exclude'
,
check_string_regex
,
'^$'
),
cfgv
.
Optional
(
'fail_fast'
,
cfgv
.
check_bool
,
False
),
cfgv
.
WarnAdditionalKeys
(
(
'repos'
,
'default_install_hook_types'
,
'default_language_version'
,
'default_stages'
,
'files'
,
'exclude'
,
'fail_fast'
,
'minimum_pre_commit_version'
,
'ci'
,
),
warn_unknown_keys_root
,
),
OptionalSensibleRegexAtTop
(
'files'
,
cfgv
.
check_string
),
OptionalSensibleRegexAtTop
(
'exclude'
,
cfgv
.
check_string
),
# do not warn about configuration for pre-commit.ci
cfgv
.
OptionalNoDefault
(
'ci'
,
cfgv
.
check_type
(
dict
)),
)
class
InvalidConfigError
(
FatalError
):
pass
load_config
=
functools
.
partial
(
cfgv
.
load_from_filename
,
schema
=
CONFIG_SCHEMA
,
load_strategy
=
yaml_load
,
exc_tp
=
InvalidConfigError
,
)
Back
|
FazBrowse Home
|
New Git URL