You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23โ€“26.RSVP โ†’
Socket
Book a DemoSign in
Socket

lefthook

Package Overview
Dependencies
Maintainers
1
Versions
173
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lefthook - npm Package Compare versions

Comparing version
2.1.3
to
2.1.4
+11
-11
package.json
{
"name": "lefthook",
"version": "2.1.3",
"version": "2.1.4",
"description": "Simple git hooks manager",

@@ -31,12 +31,12 @@ "repository": {

"optionalDependencies": {
"lefthook-darwin-arm64": "2.1.3",
"lefthook-darwin-x64": "2.1.3",
"lefthook-linux-arm64": "2.1.3",
"lefthook-linux-x64": "2.1.3",
"lefthook-freebsd-arm64": "2.1.3",
"lefthook-freebsd-x64": "2.1.3",
"lefthook-openbsd-arm64": "2.1.3",
"lefthook-openbsd-x64": "2.1.3",
"lefthook-windows-arm64": "2.1.3",
"lefthook-windows-x64": "2.1.3"
"lefthook-darwin-arm64": "2.1.4",
"lefthook-darwin-x64": "2.1.4",
"lefthook-linux-arm64": "2.1.4",
"lefthook-linux-x64": "2.1.4",
"lefthook-freebsd-arm64": "2.1.4",
"lefthook-freebsd-x64": "2.1.4",
"lefthook-openbsd-arm64": "2.1.4",
"lefthook-openbsd-x64": "2.1.4",
"lefthook-windows-arm64": "2.1.4",
"lefthook-windows-x64": "2.1.4"
},

@@ -43,0 +43,0 @@ "scripts": {

@@ -25,3 +25,3 @@ ![Build Status](https://github.com/evilmartians/lefthook/actions/workflows/test.yml/badge.svg?branch=master)

```bash
go install github.com/evilmartians/lefthook/v2@v2.1.3
go install github.com/evilmartians/lefthook/v2@v2.1.4
```

@@ -32,3 +32,3 @@

```bash
go get -tool github.com/evilmartians/lefthook/v2@v2.1.3
go get -tool github.com/evilmartians/lefthook/v2@v2.1.4
```

@@ -100,3 +100,3 @@

- name: lint backend
run: bundle exec rubocop --force-exclusion {all_files}
run: bundle exec rubocop --force-exclusion -- {all_files}

@@ -119,3 +119,3 @@ - name: stylelint frontend

- "*/routes.rb"
run: bundle exec rubocop --force-exclusion {all_files}
run: bundle exec rubocop --force-exclusion -- {all_files}
```

@@ -132,3 +132,3 @@

glob: "*.rb" # glob filter
run: bundle exec rubocop {all_files}
run: bundle exec rubocop -- {all_files}
```

@@ -206,3 +206,3 @@

jobs:
- run: bundle exec rubocop --force-exclusion --safe-auto-correct {staged_files}
- run: bundle exec rubocop --force-exclusion --safe-auto-correct -- {staged_files}
- run: yarn eslint --fix {staged_files}

@@ -209,0 +209,0 @@ ```