Skip to content

Commit

Permalink
Merge pull request #15 from silvermine/commit-messages-and-changelogs
Browse files Browse the repository at this point in the history
feat(standards): add commit message linting and changelog generation
  • Loading branch information
jthomerson authored Feb 25, 2019
2 parents 05c11e2 + 6bf995d commit 1d4f33e
Show file tree
Hide file tree
Showing 6 changed files with 2,974 additions and 370 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ script:
- node --version
- npm --version
- grunt standards
- commitlint-travis
- grunt clean build
- npm test

Expand Down
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = (grunt) => {
js: {
gruntFile: 'Gruntfile.js',
all: [
'Gruntfile.js',
'./*.js',
'./src/**/*.js',
'./tests/**/*.js',
],
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[![Coverage Status](https://coveralls.io/repos/github/silvermine/lambda-express/badge.svg?branch=master)](https://coveralls.io/github/silvermine/lambda-express?branch=master)
[![Dependency Status](https://david-dm.org/silvermine/lambda-express.svg)](https://david-dm.org/silvermine/lambda-express)
[![Dev Dependency Status](https://david-dm.org/silvermine/lambda-express/dev-status.svg)](https://david-dm.org/silvermine/lambda-express#info=devDependencies&view=table)
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)


## What?
Expand Down
3 changes: 3 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'use strict';

module.exports = { extends: [ '@commitlint/config-conventional' ] };
Loading

0 comments on commit 1d4f33e

Please sign in to comment.