CommitLint.Net 0.5.1

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global CommitLint.Net --version 0.5.1                
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 CommitLint.Net --version 0.5.1                
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=CommitLint.Net&version=0.5.1                
nuke :add-package CommitLint.Net --version 0.5.1                

What is CommitLint.Net?

It is a dotnet tool for validating commit messages according to Conventional Commits specification. It can be used in git hook, for example with Husky.NET. It is also included in xpd project.

How to use

Install

dotnet new tool-manifest # if this is your first local dotnet tool in this project
dotnet tool install CommitLint.Net

Configure Husky.NET

Install & configure Husky.NET:

dotnet tool install Husky.Net
dotnet husky install
dotnet husky add commit-msg -c "dotnet husky run --group commit-msg --args \"\$1\""

Then in .husky/task-runner.json add task to run linter:

{
  "$schema": "https://alirezanet.github.io/Husky.Net/schema.json",
  "tasks": [
    {
      "name": "commit-message-linter",
      "group": "commit-msg",
      "command": "dotnet",
      "args": [
        "commit-lint",
        "--commit-file",
        "${args}"
      ]
    }
  ]
}

Custom config

CommitLint.Net uses default configuration which is the following:

{
    "config": {
        "max-subject-length": {
            "enabled": true,
            "value": 90
        },
        "conventional-commit": {
            "enabled": true,
            "types": [ "feat", "fix", "refactor", "build", "chore", "style", "test", "docs", "perf", "revert" ]
        }
    }
}

If you want to change it, create json file, e.g. commit-message-config.json with above content and modify options as needed. Options listed above are all currently supported options.

If you're using Husky, then you'll also need to add this custom config to task-runner.json with --commit-message-config-file option:

{
  "name": "commit-message-linter",
  "group": "commit-msg",
  "command": "dotnet",
  "args": [
    "commit-lint",
    "--commit-file",
    "${args}",
    "--commit-message-config-file",
    "path/to/commit-message-config.json"
  ]
}

path/to/commit-message-config.json is relative to root of your repo.

Direct usage

If you'd like to use it directly, without Husky:

dotnet commit-lint --commit-file "path/to/commit-message.txt" --commit-message-config-file "path/to/commit-message-config.json"

Current Rules

  1. Max subject length check
  2. Scope format check
  3. Type format check + if it is on allowed list
  4. Description not empty check
  5. Blank line before body check
  6. Body not empty check
  7. Blank line before footers check
  8. Optional "!" character after type/scope for breaking change check
  9. Breaking change token in footer format check
  10. Footers content not empty check

Rules 2 - 10 are from Conventional Commits specification. Rule 1 is an additional one.

Rule 1 can be disabled in config and rules 2 - 10 can be disabled in config as well, but all together, not one by one.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
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.6.0 65 12/18/2024
0.5.3 112 12/14/2024
0.5.2 74 12/14/2024
0.5.1 85 12/3/2024
0.5.0 83 12/3/2024
0.4.0 72 12/2/2024
0.3.0 130 11/26/2024
0.2.0 79 11/18/2024
0.1.0 79 11/17/2024