Skip to content

Commit

Permalink
chore(lint): fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Estilles committed May 12, 2015
1 parent ed8e9df commit 4cf9b6e
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions tasks/defaults.js
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
//Defaults options
//Defaults options
module.exports = {
branch_name : '',
//[G]ithub [B]itbucket supported at the momment
repo_url: '',
version : '',
file: 'CHANGELOG.md',
app_name : 'My app - Changelog',
grep_commits: '^fix|^feat|^docs|BREAKING',
tag: null,
debug: false,
sections: [
{
title: 'Bug Fixes',
grep: '^fix'
},
{
title: 'Features',
grep: '^feat'
},
{
title: 'Documentation',
grep: '^docs'
},
{
title: 'Breaking changes',
grep: 'BREAKING'
},
{
title: 'Refactor',
grep: '^refactor'
},
{
title: 'Style',
grep: '^style'
},
{
title: 'Test',
grep: '^test'
},
{
title: 'Chore',
grep: '^chore'
}
]
branch_name : '',
//[G]ithub [B]itbucket supported at the momment
repo_url: '',
version : '',
file: 'CHANGELOG.md',
app_name : 'My app - Changelog',
grep_commits: '^fix|^feat|^docs|BREAKING',
tag: null,
debug: false,
sections: [
{
title: 'Bug Fixes',
grep: '^fix'
},
{
title: 'Features',
grep: '^feat'
},
{
title: 'Documentation',
grep: '^docs'
},
{
title: 'Breaking changes',
grep: 'BREAKING'
},
{
title: 'Refactor',
grep: '^refactor'
},
{
title: 'Style',
grep: '^style'
},
{
title: 'Test',
grep: '^test'
},
{
title: 'Chore',
grep: '^chore'
}
]

};
};

0 comments on commit 4cf9b6e

Please sign in to comment.