Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • v0.52.5
  • v0.52.4
  • v0.52.3
  • v0.52.2
  • v0.52.1
  • v0.52.0
  • v0.51.0
  • v0.50.0
  • v0.49.0
10 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],
        },
    };