mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 21:50:59 -05:00
9db632f0e1
- Check if the PR contains a single commit, and fail otherwise. - Enable commitlint to check if commits adhere to the conventialcommits.org spec. - Update the the pull request template to point to the conventional commit spec. - Update the dependabot configuration to add the "build(...)" prefix to commits.
4 lines
119 B
JavaScript
4 lines
119 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
helpUrl: 'https://www.conventionalcommits.org/'
|
|
}
|