-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
92 lines (72 loc) · 1.08 KB
/
.gitignore
File metadata and controls
92 lines (72 loc) · 1.08 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
87
88
89
90
91
92
# IDE
.vscode/
.idea/
.~c9*
.history/
*~
# CI caches
.npm_cache/
.precommit_cache/
.pipenv_cache/
.cache/
.mypy_cache/
.ruff_cache/
.pipx_cache/
# Claude
.claude/settings.local.json
## we manage the settings JSON by merging the JSONC files in the settings/ directory
.claude/settings.json
# Dolt database files (used by beads for Claude)
.dolt/
*.db
# Vendor build/make
dkms.conf
# Python
*.py[cod]
__pycache__/
# Venv
.venv/
venv/
*.egg-info
# Build folders
dist/
build/
# sphinx html
docs/build
docs/_build
# Testing
.pytest_cache/
tests/**/snapshots/*_actual.png
tests/**/snapshots/*_diff.png
pytest.log
# test coverage
tests/__coverage__
test/__coverage__
coverage-report-pytest
.coverage
.coverage.*
coverage.xml
# test profiling
prof/
# NodeJS
node_modules/
.pnpm-store/
# Nuxt
.output
.data
.nuxt
.nitro
.cache
# Nuxt generate creates a symlink to the dist folder, which can't have trailing slash
dist
# Infrastructure as Code
.terraform/
*.terraform.lock.hcl
.pulumi/
# Logs
*.log
*.log.*
**/logs/log*.txt
# macOS dev cleanliness
**/.DS_Store
# Ignores specific to this repository