🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@commitlint/is-ignored

Package Overview
Dependencies
Maintainers
4
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@commitlint/is-ignored

Lint your commit messages

19.8.0
Source
npm
Version published
Weekly downloads
4.4M
0.94%
Maintainers
4
Weekly downloads
 
Created

What is @commitlint/is-ignored?

The @commitlint/is-ignored npm package is designed to check if a given commit message should be ignored based on the rules defined in commitlint. This is particularly useful in automating the process of commit message validation, allowing developers to filter out commit messages that do not require validation according to the specified criteria.

What are @commitlint/is-ignored's main functionalities?

Check if a commit message is ignored

This feature allows you to check if a specific commit message should be ignored based on the commitlint configuration. It's useful for integrating with tools that automate commit message validation, enabling you to skip certain types of commits, such as those starting with 'chore:', 'docs:', or any other patterns you define in your commitlint configuration.

const isIgnored = require('@commitlint/is-ignored').default;

const commitMessage = 'chore: update dependencies';
const shouldIgnore = isIgnored(commitMessage);

console.log(shouldIgnore); // Output: true or false depending on the rules

Other packages similar to @commitlint/is-ignored

Keywords

conventional-changelog

FAQs

Package last updated on 07 Mar 2025

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