Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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'