Files
hakorune/.gitignore
Nyash Development Team ecda4da54a 🧹 Clean up Git tracking: Exclude Rust dev files and LaTeX outputs
- Add nyash-rust/ directory to .gitignore
- Exclude LaTeX generated files (*.aux, *.log, *.out, etc.)
- Keep repository clean from development artifacts

🦀 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-13 16:50:16 +09:00

68 lines
664 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