92 lines
990 B
Plaintext
92 lines
990 B
Plaintext
# 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/
|
||
tools/nekocode-rust/
|
||
|
||
# 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 |