From dcce67d13a50b313f44f6310e597a0b012f2813a Mon Sep 17 00:00:00 2001 From: Kotkoroid Date: Tue, 28 Oct 2025 11:35:57 +0100 Subject: [PATCH] docs: fix package json syntax --- docs/config.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/config.md b/docs/config.md index bc0980d..8a287ed 100644 --- a/docs/config.md +++ b/docs/config.md @@ -55,14 +55,14 @@ export default config ```json { "git-hooks": { - "preCommit": { - "stagedLint": { + "pre-commit": { + "staged-lint": { "*.{js,ts}": "bunx --bun eslint . --fix", "*.{css,scss}": "stylelint --fix" } }, - "commitMsg": "bun commitlint --edit $1", - "prePush": "bun run build" + "commit-msg": "bun commitlint --edit $1", + "pre-push": "bun run build" } } ```