Files
hakorune/.gitignore
Moe Charm f07d3d89e8 chore: Clean up repository for push - remove large files
- Remove .nekocode_sessions/*.json (analysis files)
- Remove analysis.json (large analysis result)
- Remove NotoSansJP font (9.2MB) from git tracking
- Update .gitignore to prevent future large file commits
- Keep font file locally but don't track in git
2025-08-20 08:18:51 +09:00

91 lines
969 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
pip-log.txt
pip-delete-this-directory.txt
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Build artifacts
build/
dist/
*.egg-info/
# Rust
/target/
Cargo.lock
# 🔧 Rust開発用ディレクトリGit追跡除外
nyash-rust/
# 🔧 LaTeX生成ファイルGit追跡除外
*.aux
*.log
*.out
*.pdf
*.toc
*.fls
*.fdb_latexmk
*.synctex.gz
# 開発用秘密フォルダ(完全除外)
/development/
# Test files
*.tmp
*.bak
*.orig
test_*.ny
output_*.ny
temp_*.ny
current_task
# Logs
*.log
debug_output.txt
stats_output.txt
# LLVM
*.ll
*.bc
*.o
*.exe
a.out
# Nekocode analysis files (大きなJSONファイル)
.nekocode_sessions/
analysis.json
nekocode-temp/
# Build outputs and logs
build_*.txt
test_*.txt
*_output.txt
*_results.txt
# Local test files
local_tests/
# Windows build artifacts
*.pdb
*.exp
*.lib
# Font files (already in assets/)
*.ttf
*.otf