Skip to content

Commit

Permalink
Merge pull request #11 from nongrata081/feature/issues-1-enforce-comm…
Browse files Browse the repository at this point in the history
…it-linting-for-manual-commits

feat(commit-lint): enforce commit linting for manual commits
  • Loading branch information
nongrata081 committed Mar 31, 2019
2 parents 35ecb08 + 21237ee commit ae1382e
Show file tree
Hide file tree
Showing 2 changed files with 1,040 additions and 15 deletions.
15 changes: 14 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,26 @@
"commit": "git-cz"
},
"devDependencies": {
"@commitlint/cli": "^7.5.1",
"@commitlint/config-conventional": "^7.5.0",
"commitizen": "3.0.5",
"cz-conventional-changelog": "2.1.0"
"cz-conventional-changelog": "2.1.0",
"husky": "^1.3.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "ISC"
}
Loading

0 comments on commit ae1382e

Please sign in to comment.