Skip to content

Commit be8def5

Browse files
committed
chore: update commitlint configuration
1 parent c3c4866 commit be8def5

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

etc/commitlint/.commitlintrc.js

+9
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@
2727
*/
2828
var config = {};
2929

30+
/**
31+
* Link to commit guidance.
32+
*
33+
* @name helpUrl
34+
* @memberof config
35+
* @type {string}
36+
*/
37+
config[ 'helpUrl' ] = 'https://github.com/stdlib-js/stdlib/tree/develop/docs/style-guides/git';
38+
3039
/**
3140
* Commit message parser.
3241
*

etc/commitlint/parser-preset/index.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,13 @@ var config = require( 'conventional-changelog-conventionalcommits' );
3333
*/
3434
var conf = config({
3535
// Define an array of prefixes used to detect references to issues:
36-
'issuePrefixes': [ '#' ]
36+
'issuePrefixes': [
37+
'#',
38+
'gh-'
39+
],
40+
41+
// Define a pattern to match a reverted commit:
42+
'revertPattern': /^Revert\s([\s\S]*)\s*This reverts commit (\w*)\./
3743
});
3844

3945

0 commit comments

Comments
 (0)