-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.gitignore
More file actions
64 lines (56 loc) · 1.32 KB
/
Copy path.gitignore
File metadata and controls
64 lines (56 loc) · 1.32 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
# ===== Allowlist approach =====
# Ignore everything at root by default, then explicitly allow our top-level folders.
# This keeps dynamically-named cloned agent folders (workspace/agents/<slug>/) out of
# git automatically; user-specific state in workspace/ and .local/ is governed by
# .gitignore files inside solutions/ess-maker-skills/ where the layout actually lives.
/*
# Allow our top-level folders and root files
!.devcontainer/
.devcontainer/*
!.devcontainer/devcontainer.json
!.github/
!.gitignore
!.vscode/
!solutions/
!samples/
!tests/
!tools/
!docs/
!README.md
!LICENSE
!SECURITY.md
!CONTRIBUTING.md
!CODE_OF_CONDUCT.md
!SUPPORT.md
!setup/
!no-commit/
!pyproject.toml
!requirements-dev.txt
# Internal planning docs (not for distribution)
no-commit/
# OS
.DS_Store
Thumbs.db
# VS Code
.vscode/.ropeproject
.vscode/mcp.json
*.code-workspace
# Node (if added later)
node_modules/
# Python (if added later)
__pycache__/
*.pyc
.env
# Test artifacts
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
.tox/
# Captured VCR cassettes that contain unredacted real-tenant traffic.
# Cassettes that have been redacted and reviewed live at tests/fixtures/cassettes/
# and ARE committed. The .raw/ subdir is for unredacted intermediate captures
# that must never reach git.
tests/fixtures/cassettes/.raw/
tests/fixtures/captures/.raw/