Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hugocruzlfc/commitline-husky
Uso practico de Commit Line y Husky para mnatener en regla los commit y preservar la organizacion de nuestro repo.
https://github.com/hugocruzlfc/commitline-husky
Last synced: about 12 hours ago
JSON representation
Uso practico de Commit Line y Husky para mnatener en regla los commit y preservar la organizacion de nuestro repo.
- Host: GitHub
- URL: https://github.com/hugocruzlfc/commitline-husky
- Owner: hugocruzlfc
- Created: 2023-07-13T09:58:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-13T10:10:05.000Z (over 1 year ago)
- Last Synced: 2023-07-13T11:29:03.076Z (over 1 year ago)
- Language: HTML
- Size: 326 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instalación de CommitLint
npm i -D @commitlint/{cli,config-conventional}
# Crea un archivo commitlint.config.js en la raiz del proyecto con el siguiente contenido:
module.exports = {extends: ['@commitlint/config-conventional']}
# Instalación de Husky
npm i -D husky
# Añadir husky hook
npx husky install
# Añadir hook de commit-msg
npx husky add .husky/commit-msg 'npx --no-install commitlint --edit $1'