We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3c4866 commit be8def5Copy full SHA for be8def5
etc/commitlint/.commitlintrc.js
@@ -27,6 +27,15 @@
27
*/
28
var config = {};
29
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
+
39
/**
40
* Commit message parser.
41
*
etc/commitlint/parser-preset/index.js
@@ -33,7 +33,13 @@ var config = require( 'conventional-changelog-conventionalcommits' );
var conf = config({
// Define an array of prefixes used to detect references to issues:
- 'issuePrefixes': [ '#' ]
+ 'issuePrefixes': [
+ '#',
+ 'gh-'
+ ],
+ // Define a pattern to match a reverted commit:
42
+ 'revertPattern': /^Revert\s([\s\S]*)\s*This reverts commit (\w*)\./
43
});
44
45
0 commit comments