Skip to content

Instantly share code, notes, and snippets.

@About7Sharks
Created July 27, 2022 20:23
Show Gist options
  • Save About7Sharks/91fcbe4ad8b6cce49719bafb45c10b79 to your computer and use it in GitHub Desktop.
Save About7Sharks/91fcbe4ad8b6cce49719bafb45c10b79 to your computer and use it in GitHub Desktop.
module.exports = {
// eslint-disable-next-line max-len
helpUrl: 'https://github.com/conventional-changelog/commitlint/blob/master/docs/reference-rules.md',
ignores: [
message => message.includes('WIP')
],
rules: {
'header-full-stop': [2, 'always', '.'],
'header-max-length': [1, 'always', 80],
'header-case': [2, 'always', 'sentence-case'],
'body-full-stop': [2, 'always', '.']
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment