-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from JohnnyEstilles/code-climate
Method simplification and refactoring into separate files
- Loading branch information
Showing
25 changed files
with
694 additions
and
494 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,6 @@ | |
"eqnull": true, | ||
"node": true, | ||
"mocha": true, | ||
"expr": true | ||
"expr": true, | ||
"validthis": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
} | ||
] | ||
|
||
}; | ||
}; |
Oops, something went wrong.