Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 877 Bytes

conventional-commits.md

File metadata and controls

38 lines (29 loc) · 877 Bytes

fix: bugfixes build: build fixes chore: changes that don't affect the codebase ci: changes that affect CI docs: changes that affect docs feat: new features perf: changes that affect performance refactor: changes that don't affect the codebase revert: revert to previous commit style: changes that don't affect the codebase test: changes that affect tests

config for eslint + standard

npm i -D [email protected]
[email protected]
[email protected]
[email protected]
@typescript-eslint/[email protected]
[email protected]
[email protected]

Check for updates

npm i -g npm-check npm-check -s -u

Add new husky hook

// example npx husky add .husky/pre-commit "lint-staged"

// add a pre-push npx husky add .husky/pre-push "npm run test:ci"

Amend commit

git commit --amend --no-edit