79670705

Date: 2025-06-18 13:26:12
Score: 0.5
Natty:
Report link

In order to disable a rule you need to add it to your commitlint config with the level 0 (means ignore):

module.exports = {
  extends: ['@commitlint/config-conventional'],
  rules: {
    'subject-case': [0]
  }
};

using "never" as a second parameter of the rule array doesn't disable the rule, but inverts it

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alexander Goncharov