chore: add conventional commit git hook

This commit is contained in:
Cassandra de la Cruz-Munoz 2023-10-18 10:49:45 -04:00
parent aa00d09708
commit 89612deb09
4 changed files with 2258 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
node_modules
.husky

1
commitlint.config.js Normal file
View File

@ -0,0 +1 @@
module.exports = { extends: ['@commitlint/config-conventional'] };

2248
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

7
package.json Normal file
View File

@ -0,0 +1,7 @@
{
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"husky": "^8.0.3"
}
}