Skip to content
Snippets Groups Projects
Select Git revision
  • master default
1 result

commitlint.config.js

Blame
  • commitlint.config.js 246 B
    module.exports = {
        extends: ['@commitlint/config-conventional'],
        rules: {
            'body-max-line-length': [2, 'always', 120],
            'footer-max-line-length': [2, 'always', 120],
            'header-max-length': [2, 'always', 72],
        },
    };