diff options
| author | Matias Niemelä | 2013-12-06 12:54:20 -0500 | 
|---|---|---|
| committer | Matias Niemelä | 2013-12-09 11:52:28 -0500 | 
| commit | a14266e46466d02871bc3edc2a9229dcfa5acc89 (patch) | |
| tree | 4facd17816104d22ef097804dda8fced18975af8 /validate-commit-msg.js | |
| parent | b4d44e12987131bfd23399947fe9b2f860cc5729 (diff) | |
| download | angular.js-a14266e46466d02871bc3edc2a9229dcfa5acc89.tar.bz2 | |
chore(CHANGELOG): introduce perf() section for performance-related commits
Instead of using fix() or chore() when labelling a commit which improves
speed or performance use perf(). Perf commits will be listed in the
CHANGELOG under "Performance Improvements".
For example:
perf($animate): cache all getComputedStyle operations to reduce additional reflows
Diffstat (limited to 'validate-commit-msg.js')
| -rwxr-xr-x | validate-commit-msg.js | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/validate-commit-msg.js b/validate-commit-msg.js index da069998..c68ebb74 100755 --- a/validate-commit-msg.js +++ b/validate-commit-msg.js @@ -21,6 +21,7 @@ var TYPES = {    docs: true,    style: true,    refactor: true, +  perf: true,    test: true,    chore: true,    revert: true | 
