- Install Husky with commit-msg and pre-commit hooks - Add commitlint CLI and conventional config for enforcing commit message standards - Configure pre-commit to run lint-staged for code quality checks - Update bun.lock with new dev dependencies This setup ensures consistent commit messages and automated linting before commits.
9 lines
165 B
JavaScript
9 lines
165 B
JavaScript
/**
|
|
* @filename: lint-staged.config.js
|
|
* @type {import('lint-staged').Configuration}
|
|
*/
|
|
|
|
export default {
|
|
'*': 'biome check --write --no-errors-on-unmatched'
|
|
}
|