feat: add conventional commits (#14)

This commit is contained in:
Jef LeCompte
2020-09-18 04:44:03 -04:00
committed by GitHub
parent 24a4d2b021
commit eb4f5e0341
2 changed files with 884 additions and 0 deletions
+871
View File
File diff suppressed because it is too large Load Diff
+13
View File
@@ -28,11 +28,24 @@
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.11.1",
"@types/nodemailer": "^6.4.0",
"@types/puppeteer": "^3.0.2",
"husky": "^4.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.2",
"xo": "^0.33.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}