@evilmartians/lefthook-installer 1.7.21 → 1.8.0
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 +8 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<img align="right" width="147" height="100" title="Lefthook logo"
|
|
9
9
|
src="./logo_sign.svg">
|
|
10
10
|
|
|
11
|
-
A Git hooks manager for Node.js, Ruby and many other types of projects.
|
|
11
|
+
A Git hooks manager for Node.js, Ruby, Python and many other types of projects.
|
|
12
12
|
|
|
13
13
|
* **Fast.** It is written in Go. Can run commands in parallel.
|
|
14
14
|
* **Powerful.** It allows to control execution and files you pass to your commands.
|
|
@@ -33,12 +33,18 @@ With **NPM**:
|
|
|
33
33
|
npm install lefthook --save-dev
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
For **Ruby**:
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
39
|
gem install lefthook
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
For **Python**:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
pip install lefthook
|
|
46
|
+
```
|
|
47
|
+
|
|
42
48
|
**[Installation guide](./docs/install.md)** with more ways to install lefthook: [apt](./docs/install.md#deb), [brew](./docs/install.md#homebrew), [winget](./docs/install.md#winget), and others.
|
|
43
49
|
|
|
44
50
|
## Usage
|