@evilmartians/lefthook 2.0.3 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/lefthook-darwin-arm64/lefthook +0 -0
- package/bin/lefthook-darwin-x64/lefthook +0 -0
- package/bin/lefthook-freebsd-arm64/lefthook +0 -0
- package/bin/lefthook-freebsd-x64/lefthook +0 -0
- package/bin/lefthook-linux-arm64/lefthook +0 -0
- package/bin/lefthook-linux-x64/lefthook +0 -0
- package/bin/lefthook-openbsd-arm64/lefthook +0 -0
- package/bin/lefthook-openbsd-x64/lefthook +0 -0
- package/bin/lefthook-windows-arm64/lefthook.exe +0 -0
- package/bin/lefthook-windows-x64/lefthook.exe +0 -0
- package/package.json +1 -1
- package/schema.json +10 -1
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ A Git hooks manager for Node.js, Ruby, Python and many other types of projects.
|
|
|
22
22
|
With **Go** (>= 1.25):
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
go install github.com/evilmartians/lefthook/v2@v2.0.
|
|
25
|
+
go install github.com/evilmartians/lefthook/v2@v2.0.4
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
* or as a go tool
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -433,7 +433,7 @@
|
|
|
433
433
|
"type": "object"
|
|
434
434
|
}
|
|
435
435
|
},
|
|
436
|
-
"$comment": "Last updated on 2025.11.
|
|
436
|
+
"$comment": "Last updated on 2025.11.13.",
|
|
437
437
|
"properties": {
|
|
438
438
|
"min_version": {
|
|
439
439
|
"type": "string",
|
|
@@ -497,6 +497,15 @@
|
|
|
497
497
|
"type": "boolean",
|
|
498
498
|
"description": "Skip running Git LFS hooks (enabled by default)"
|
|
499
499
|
},
|
|
500
|
+
"glob_matcher": {
|
|
501
|
+
"type": "string",
|
|
502
|
+
"enum": [
|
|
503
|
+
"gobwas",
|
|
504
|
+
"doublestar"
|
|
505
|
+
],
|
|
506
|
+
"description": "Choose the glob matching engine: 'gobwas' (default) or 'doublestar' (standard ** behavior)",
|
|
507
|
+
"default": "gobwas"
|
|
508
|
+
},
|
|
500
509
|
"remotes": {
|
|
501
510
|
"items": {
|
|
502
511
|
"$ref": "#/$defs/Remote"
|