-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
82 lines (73 loc) · 2.03 KB
/
Copy path.gitignore
File metadata and controls
82 lines (73 loc) · 2.03 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
# ─── Python build / runtime ─────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
*.egg
build/
dist/
.eggs/
pip-wheel-metadata/
.python-version
# ─── Virtual envs (NEVER commit these) ──────────────────────────
.venv/
venv/
env/
ENV/
*.venv/
# ─── Secrets / credentials (NEVER commit these) ─────────────────
.env
.env.*
*.env
*.key
*.pem
*.p12
*.pfx
credentials*
secrets*
.aws/
.ssh/
*.token
config.local.*
# ─── OS junk ────────────────────────────────────────────────────
.DS_Store
Thumbs.db
desktop.ini
*~
.Spotlight-V100
.Trashes
ehthumbs.db
# ─── Editors / IDEs ─────────────────────────────────────────────
.idea/
.vscode/
*.swp
*.swo
*.swn
.project
.pydevproject
.settings/
# ─── Test / coverage artifacts ─────────────────────────────────
.coverage
.coverage.*
htmlcov/
.pytest_cache/
.tox/
.mypy_cache/
.ruff_cache/
nosetests.xml
coverage.xml
# ─── Logs / runtime state ───────────────────────────────────────
*.log
*.pid
*.seed
*.pid.lock
# ─── User-installed skin library shouldn't ship with the repo ──
# (~/.agenthud/skins/ is the user's library — separate from any skins
# bundled inside the package.) Safety net in case it's symlinked here.
user_skins/
# ─── Local test artifacts ───────────────────────────────────────
/tmp_*
/scratch_*
*.tmp
# ─── Python launcher / shell history ───────────────────────────
.python_history