-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
86 lines (73 loc) · 2.01 KB
/
.gitignore
File metadata and controls
86 lines (73 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Python bytecode and compiled files
__pycache__/
*.py[cod]
*$py.class
# Distribution / packaging
build/
develop-eggs/
dist/
eggs/
*.egg-info/
*.egg
wheels/
*.spec # PyInstaller spec file (もし将来的に実行ファイル作成に使う場合)
# Virtual environment folders
.venv/
venv/
ENV/
env/
virtualenv/
# Windows specific virtualenv folders (often created by IDEs)
Include/
Lib/
Scripts/
# macOS/Linux specific virtualenv folders (often created by IDEs)
# bin/ # bin/はffmpeg実行ファイルなどを置く可能性があるのでコメントアウト、必要なら有効化
# lib/ # 同上
# include/ # 同上
# IDE / Editor specific files
.idea/ # IntelliJ IDEA, PyCharm
.vscode/ # Visual Studio Code
*.sublime-project
*.sublime-workspace
nbproject/ # NetBeans
*.project # Eclipse (PyDev)
.project # Eclipse
.settings/ # Eclipse
*.tmproj # TextMate
*.komodoproject # Komodo Edit
*.bak # Backup files often created by editors
*~ # Backup files often created by editors (e.g., Gedit, Kate)
*.swp # Vim swap files
*.swo # Vim swap files
# OS generated files
.DS_Store # macOS
Thumbs.db # Windows
ehthumbs.db # Windows
Desktop.ini # Windows
# Log files (もしアプリケーションがログファイルを生成する場合)
# *.log
# logs/
# Test output (もしテストフレームワークを使用する場合)
# .pytest_cache/
# .tox/
# htmlcov/
# .coverage
# nosetests.xml
# coverage.xml
# Local settings files (もしユーザー固有の設定ファイルがある場合)
# local_settings.py
# .env
app_settings.json
# Local agent instructions
AGENTS.md
# Jupyter Notebook checkpoints (もし使用する場合)
.ipynb_checkpoints
# mypy cache (もし型チェックにmypyを使用する場合)
.mypy_cache/
# Ruff cache (もしリンター/フォーマッッターにRuffを使用する場合)
.ruff_cache/
# pytest cache (もしテストにpytestを使用する場合)
.pytest_cache/
loft/
.tmp/colmap-upstream