🎉 init: Nuxt 프로젝트를 위한 공통 지침 및 스크립트 추가

This commit is contained in:
hyeonggil
2026-04-19 20:44:32 +09:00
commit 5ccb27f86e
337 changed files with 3191 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git merge" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message to
# stderr if it wants to stop the merge commit.
#
# To enable this hook, rename this file to "pre-merge-commit".
. git-sh-setup
test -x "$GIT_DIR/hooks/pre-commit" &&
exec "$GIT_DIR/hooks/pre-commit"
: