Created
July 27, 2022 20:23
-
-
Save About7Sharks/91fcbe4ad8b6cce49719bafb45c10b79 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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