Skip to content

Commit be2830f

Browse files
committed
Add changelog config
1 parent ec09d3c commit be2830f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

config/changelog.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// jshint node:true
2+
3+
// For details on each option run `ember help release`
4+
module.exports = {
5+
6+
// angular style guide: https://github.com/angular/angular.js/blob/v1.4.8/CONTRIBUTING.md#commit
7+
// jquery style guide: https://contribute.jquery.org/commits-and-pull-requests/#commit-guidelines
8+
// ember style guide: https://github.com/emberjs/ember.js/blob/master/CONTRIBUTING.md#commit-tagging
9+
style: 'angular', // 'ember' 'jquery'
10+
11+
head: 'master',
12+
base: '-last', // a branch or tag name, `-last` defaults to the version in package.json
13+
14+
hooks: {
15+
/*
16+
parser: function(commit) { return commit; }
17+
filter: function(commit) { return true; },
18+
groupSort: function(commits) { return { commits: commits }; },
19+
format: function(commit) { return commit.title; },
20+
*/
21+
}
22+
23+
};

0 commit comments

Comments
 (0)