Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

whippet

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

whippet

Install make based git hooks with ease.

  • 0.3.2
  • PyPI
  • Socket score

Maintainers
1

Whippet - like husky, but leaner ################################ Use make <https://www.gnu.org/software/make/>_ targets to execute git hooks. Inspired by husky <https://github.com/typicode/husky#readme>_.

.. image:: https://travis-ci.org/BorePlusPlus/whippet.svg?branch=master :target: https://travis-ci.org/BorePlusPlus/whippet :alt: Automatic build

.. image:: https://img.shields.io/pypi/v/whippet :target: https://pypi.org/project/whippet/ :alt: PyPI version

.. image:: https://img.shields.io/pypi/dw/whippet :target: https://pypi.org/project/whippet/ :alt: PyPI downloads

Rationale


When working on Node.js <https://nodejs.org>_ projects, I liked the simplicity of setting up git hooks using husky. Since I failed to find a similar tool in python ecosystem, I decided to write one myself.

As far as I know, there is no standard equivalent to npm scripts <https://docs.npmjs.com/misc/scripts>_ in python, so I chose to rely on make which seems to be a popular way to organise project-related tasks in the python world.

Note

Development follows my needs at work, which means whippet might be a bit light on features. Feel free to make a suggestion if you're missing something.

Installation


Whippet is available as a PyPI package <https://pypi.org/project/whippet/>. Use a tool that can install packages from it, like for instance pip <https://pip.pypa.io/en/stable/>.

.. code-block:: bash

$ pip install whippet

Usage


Install hooks

Once whippet is installed, it is used by invoking whippet executable in the directory where you wish to install hooks. Whippet checks if that directory (or its ancestor) contains a .git directory and offers to install hooks into it.

.. code-block:: bash

$ cd demo
$ whippet
whippet - Are you sure you want to install hooks in /home/bpp/demo/.git? [Y/n] y

Setup target

Whippet hooks are scripts that check for the existence of make targets with the same name as git hooks. If such a target exists, the script executes it. Let's take pre-commit as an example. Once whippet hooks are installed, we simply add pre-commit target to the Makefile like so:

.. code-block:: make

pre-commit:
    @echo "Whippet says: Woof!"

Then the target will be executed on pre-commit:

.. code-block:: bash

$ git commit -m 'Testing whippet'
pre-commit
Whippet says: Woof!
[master d654d33] Bar
1 file changed, 12 insertions(+)
create mode 100644 Makefile
$

Uninstall hooks

If you had enough and want to remove whippet git hooks invoke whippet and pass uninstall command

.. code-block:: bash

$ whippet uninstall
whippet - Are you sure you want to uninstall hooks in /home/bpp/demo/.git? [Y/n] y

Non-interactive

To avoid the prompt pass the --assume-yes argument to whippet. This can be useful when adding whippet to initialisation target in Makefile. Example:

.. code-block:: make

init:
    poetry install
    whippet --assume-yes

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc