Skip to content

Commit d4e5381

Browse files
committed
chore: add project-specific gitignore entries
1 parent ff60709 commit d4e5381

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,3 +378,49 @@ vite.config.ts.timestamp-*
378378
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
379379
hs_err_pid*
380380
replay_pid*
381+
382+
# =============================================================================
383+
# Project-specific
384+
# =============================================================================
385+
386+
# XML (Maven generates many; allow specific pom.xml files)
387+
*.xml
388+
!tests/test_languages/fixtures/**/pom.xml
389+
!code_to_optimize/java/pom.xml
390+
!codeflash-java-runtime/pom.xml
391+
392+
# Gradle
393+
.gradle/
394+
395+
# Credentials
396+
*.pem
397+
**/.env
398+
399+
# IDEs
400+
.idea/
401+
.vscode/
402+
403+
# Nuitka
404+
**/dist-nuitka/**
405+
406+
# npm
407+
**/.npmrc
408+
409+
# Mac
410+
.DS_Store
411+
412+
# Tessl — .tessl/.gitignore handles tiles/RULES.md internally
413+
.mcp.json
414+
415+
# Claude Code — track shared config, ignore local state
416+
.claude/*
417+
!.claude/rules/
418+
!.claude/hooks/
419+
!.claude/skills/
420+
!.claude/settings.json
421+
422+
# Test fixture lockfiles — prevents Dependabot from scanning them
423+
code_to_optimize/**/package-lock.json
424+
425+
# Other tools
426+
.codeflash/

0 commit comments

Comments
 (0)