-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy path.gitignore
More file actions
64 lines (53 loc) · 864 Bytes
/
.gitignore
File metadata and controls
64 lines (53 loc) · 864 Bytes
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
# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
venv/
.venv/
*.egg
dist/
build/
# IDE
.idea/
.vscode/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Temporary
*.tmp
*.temp
# Logs
*.log
discover.log
download.log
download_*.log
sync_and_download.log
# Build intermediates
failure_report.json
repo_cache.json
security-report.json
reputation-report.json
registry.json.bak
registry.json.tmp
# Duplicate category indexes (frontend uses docs/categories/ only)
/categories/
# Temp working directory
/.tmp/
# Cache directories
/cache/
/.cache/
# Coverage reports
htmlcov/
.coverage
coverage.xml
# Test artifacts
.pytest_cache/
.mypy_cache/
# The publish artifact mirrors the data repository under skills/**.
# Skill names can legitimately collide with generic ignored directories
# such as build/ or dist/, so never ignore mirrored skill files.
!/skills/
!/skills/**