Skip to content
Snippets Groups Projects
Select Git revision
  • e5d83f3f36152c57c6701fdb5d28b624830dc8e0
  • master default protected
2 results

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],
        },
    };