From e9531edcb5543aa368fa10b27d7028ee40c6539b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A4=EC=A0=95=EB=AF=BC?= Date: Tue, 23 Jun 2026 10:46:49 +0900 Subject: [PATCH] Update .gitignore to exclude build artifacts, tool states, and temp files. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 빌드 결과물(lib)과 에이전트 작업 상태(.omc, .omx)를 제외하여 저장소의 청결도를 유지합니다. - 스크립트 실행 시 생성되는 임시 데이터 폴더(tmp)를 추가하여 불필요한 파일의 버전 관리를 방지했습니다. - 프로젝트 개발 환경에서 발생하는 에디터 및 OS 관련 부산물을 일괄 정리하여 관리 효율성을 높였습니다. - 로컬 전용 작업물인 짹 말투 검수 로그/하니스(chat-review) 폴더를 버전 관리에서 제외했습니다. --- .gitignore | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 9be0f01..a917236 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,25 @@ -# Compiled JavaScript files -lib/**/*.js -lib/**/*.js.map +# Dependencies +node_modules/ + +# Build output (tsc outDir = lib) +lib/ # TypeScript v1 declaration files typings/ -# Node.js dependency directory -node_modules/ -*.local \ No newline at end of file +# Editor / OS noise +.DS_Store +.idea/.name + +# Tooling state (oh-my-claudecode 등 에이전트 작업 상태) +.omc/ +.omx/ + +# Scratch / 스크립트 산출물 (scripts/chat-tools-sheet.ts 등) +tmp/ + +# Local overrides / secrets +*.local + +# 짹 말투 검수 로그/하니스 (로컬 전용 작업물) +chat-review/