Socket
Socket
Sign inDemoInstall

@commitlint/is-ignored

Package Overview
Dependencies
2
Maintainers
4
Versions
75
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @commitlint/is-ignored

Lint your commit messages


Version published
Weekly downloads
2.8M
increased by1.47%
Maintainers
4
Install size
2.22 MB
Created
Weekly downloads
 

Package description

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

Changelog

Source

19.2.2 (2024-04-14)

Bug Fixes

  • is-ignored: ignore "amend!" commits (#4024) (90078f6)
  • update dependency inquirer to v9.2.17 (#3996) (44d0fcc)
  • update dependency inquirer to v9.2.18 (#4025) (52d7edc)

Keywords

FAQs

Last updated on 14 Apr 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc