Skip to content
Snippets Groups Projects
Select Git revision
  • d5feaec13578226ad1f60c830a228b23f7d4dac4
  • master default
  • fresh_master
3 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],
        },
    };