UNPKG

803 BJavaScriptView Raw
1// jshint node:true
2
3// For details on each option run `ember help release`
4module.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};