-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.gitignore
More file actions
74 lines (63 loc) · 1.72 KB
/
Copy path.gitignore
File metadata and controls
74 lines (63 loc) · 1.72 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
# Ignore everything by default
*
# --- Always ignore sensitive files (even if explicitly added) ---
.env
.env.local
.env.*.local
**/__pycache__/
*.pyc
*.pyo
logs/
*.log
.DS_Store
Thumbs.db
# Allow top-level files
!.gitignore
!README.md
!LICENSE
!CONTRIBUTING.md
!requirements.txt
# Allow assets/ (screenshots, images)
!assets/
!assets/**
# Allow skill/ tree
!skill/
!skill/tableau-dashboard-creator/
!skill/tableau-dashboard-creator/SKILL.md
!skill/tableau-dashboard-creator/assets/
!skill/tableau-dashboard-creator/assets/**
!skill/tableau-dashboard-creator/examples/
!skill/tableau-dashboard-creator/examples/**
!skill/tableau-dashboard-creator/references/
!skill/tableau-dashboard-creator/references/**
!skill/tableau-dashboard-creator/scripts/
!skill/tableau-dashboard-creator/scripts/**
skill/tableau-dashboard-creator/scripts/__pycache__/
!skill/tableau-dashboard-creator/skeleton/
!skill/tableau-dashboard-creator/skeleton/**
# Allow demo/ tree (a single v2 project root)
!demo/
!demo/**
# --- v2 plugin (dev/v2-plugin) ---
# Allow plugin manifest
!.claude-plugin/
!.claude-plugin/**
# Allow the inter-skill contract
!CONTRACT.md
# Allow skills/ tree (the 8 v2 skills + tableau-route router)
!skills/
!skills/**
# Allow tests/ tree (contract + helper-script tests)
!tests/
!tests/**
# Re-ignore Python caches inside the allowed trees above
**/__pycache__/
*.pyc
*.pyo
# Re-ignore secrets inside the allowed trees above. Git's last-match-wins means a
# broad allowlist negation (!demo/**) out-ranks the .env rules at the top of this
# file, so they have to be restated here. demo/ is a project root (CONTRACT.md 3.1),
# which is exactly where a .env would land. .env.example is deliberately not matched.
**/.env
**/.env.local
**/.env.*.local