Husky 0.0.7

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global Husky --version 0.0.7
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local Husky --version 0.0.7
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Husky&version=0.0.7
nuke :add-package Husky --version 0.0.7

Husky.Net

Introduction

Husky improves your commits and more 🐶 woof!

You can use it to lint your commit messages, run tests, lint code, etc... when you commit or push.

Features

  • Supports all Git hooks
  • Powered by modern new Git feature (core.hooksPath)
  • User-friendly messages
  • Supports macOS, Linux and Windows
  • Git GUIs
  • Custom directories
  • Monorepo
  • 🔥 Internal task runner! 🆕
  • 🔥 Multiple file states (staged, lastCommit, glob) 🆕
  • 🔥 Compatible with dotnet-format 🆕
  • 🔥 Customizable tasks 🆕

next

  • ⌛ Task for specific branch or tags (soon)
  • ⌛ User-defined file states (soon)
  • ⌛ Internal commit-msg linter (soon)

If you already know what is the lint-staged or Husky (npm packages), this is very similar but you can use Husky.Net without having node, yarn, etc.. installed, with a lot of more features! 🚀🚀

A lot of features are coming soon, stay tuned! 👁️‍🗨️👀

Installation

# local installation (recommended)
cd <Your project root directory>
dotnet new tool-manifest
dotnet tool install Husky

# global installation
dotnet tool install --global Husky

Note: With the global installation, you don't need to add the dotnet prefix to the commands.

Setup husky for your project

cd <Your project root directory>
dotnet husky install

Add your first hook

dotnet husky add .husky/pre-commit "echo 'Husky is awesome!'"
git add .husky/pre-commit

Make a commit

git commit -m "Keep calm and commit"
# `echo 'Husky is awesome!'` will run every time you commit

Automate husky installation for other contributors

If you installed husky locally, just add the below code to one of your projects (*.csproj *.vbproj).

Important: Just make sure to update the working directory depending on your folder structure.

<Target Name="husky" BeforeTargets="Restore;CollectPackageReferences">
   <Exec Command="dotnet tool restore"  StandardOutputImportance="Low" StandardErrorImportance="High"/>
   <Exec Command="dotnet husky install" StandardOutputImportance="Low" StandardErrorImportance="High"
         WorkingDirectory="../../" />  
</Target>

If you have only one multiple target project (TargetFrameworks) add the bellow condition IsCrossTargetingBuild to the target tag to prevent multiple execution

<Target Name="husky" BeforeTargets="Restore;CollectPackageReferences" Condition="'$(IsCrossTargetingBuild)' == 'true'">
   ...

Or If you are using the npm, add the below code to your package.json file to automatically install husky after the installation process:

 "scripts": {
    "prepare": "dotnet tool restore && dotnet husky install"
 }

Task runner

After installation, you must have task-runner.json file in your .husky directory that you can use to define your tasks.

you can run and test your tasks with husky run command. Once you are sure that your tasks are working properly, you can add it to the hook.

e.g.

dotnet husky add .husky/pre-commit "dotnet husky run"

<details> <summary>A simple real-world example <code>task-runner.json</code></summary> <p>

{
   "tasks": [
      {
         "command": "dotnet",
         "group": "backend",
         "args": ["dotnet-format", "--include", "${staged}"],
         "include": ["**/*.cs", "**/*.vb"]
      },
      {
         "name": "eslint",
         "group": "frontend",
         "command": "npm",
         "pathMode": "absolute",
         "cwd": "Client",
         "args": ["run", "lint", "${staged}"],
         "include": ["**/*.ts", "**/*.vue", "**/*.js"]
      },
      {
         "name": "prettier",
         "group": "frontend",
         "command": "npx",
         "pathMode": "absolute",
         "cwd": "Client",
         "args": ["prettier", "--write", "${staged}"],
         "include": [
            "**/*.ts",
            "**/*.vue",
            "**/*.js",
            "**/*.json",
            "**/*.yml",
            "**/*.css",
            "**/*.scss"
         ]
      },
      {
         "name": "Welcome",
         "output": "always",
         "command": "bash",
         "args": ["-c", "echo  🌈 Nice work! 🥂"],
         "windows": {
            "command": "cmd",
            "args": ["/c", "echo  🌈 Nice work! 🥂"]
         }
      }
   ]
}

</p> </details>

<br>

Task supported configurations

Using bellow configuration you can define your task with a lot of options.


name optional type default description
command false string - path to the executable file or script or executable name
args true [string array] - command arguments
include true [array of glob] ** glob pattern to select files
name true string command name of the task (recommended)
group true string - group of the task
pathMode true [absolute, relative] relative file path style (relative or absolute)
cwd true string project root directory current working directory for the command, can be relative or absolute
output true [always, verbose, never] always output log level
exclude true [array of glob] - glob pattern to exclude files
windows true object - overrides all the above settings for windows

Arg Variables

There are some variables that you can use in your task arguments.

  • ${staged}
    • returns the list of currently staged files
  • ${LastCommit}
    • returns last commit changed files
  • ${matched}
    • returns the list of matched files using include and exclude, be careful with this variable, it will return all the files if you don't specify include or exclude

e.g."args": ["format", "${staged}"]]

Glob patterns

Husky.Net supports the standard dotnet FileSystemGlobbing patterns for include or exclude task configurations. read more here


Notes

  • Consider all bellow 1.x versions as beta. ( we need a lot of tests before major release )

  • Don't forget to give a ⭐ on GitHub

  • This library inspired of husky & lint-staged and a few other tools, for DotNet, so make sure to support them too!

Known issues

  • husky run command doesn't have color when executed from hooks.
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
0.7.0 6,909 6/16/2024
0.6.5 43,709 5/10/2024
0.6.4 287,040 12/17/2023
0.6.3 101,075 11/16/2023
0.6.2 106,576 9/19/2023
0.6.1 44,929 9/2/2023
0.6.1-test1 775 9/19/2023
0.6.0 7,786 8/29/2023
0.6.0-Preview4 949 6/8/2023
0.6.0-Preview2 1,008 4/17/2023
0.6.0-Preview1 1,089 2/26/2023
0.5.4 359,659 1/7/2023
0.5.4-preview2 1,120 1/7/2023
0.5.4-preview1 15,490 12/2/2022
0.5.2 75,459 10/8/2022
0.5.1 130,612 8/1/2022
0.5.0 1,435 7/30/2022
0.4.4 92,228 5/18/2022
0.4.2 39,425 3/9/2022
0.4.1 1,212 3/9/2022
0.4.0 36,758 1/31/2022
0.4.0-preview-4 1,019 1/29/2022
0.4.0-preview-3 1,080 1/28/2022
0.3.2 6,502 1/15/2022
0.3.1 1,462 1/11/2022
0.3.0 54,103 1/5/2022
0.2.2 1,567 1/3/2022
0.2.1 1,140 12/31/2021
0.2.0 2,080 12/30/2021
0.1.2 1,193 12/29/2021
0.1.1 1,146 12/28/2021
0.0.9 1,177 12/28/2021
0.0.8 1,041 12/27/2021
0.0.7 1,115 12/27/2021