-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Expand file tree
/
Copy path.gitignore
More file actions
175 lines (155 loc) · 2.36 KB
/
.gitignore
File metadata and controls
175 lines (155 loc) · 2.36 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# Copyright 2025 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Byte-compiled / Cache files
__pycache__/
*.py[cod]
*$py.class
# Distribution / Packaging
build/
dist/
*.egg-info/
.eggs/
eggs/
# Virtual Environments
.env
.venv
env/
venv/
ENV/
*_env/
# Test & Coverage Reports
.pytest_cache/
.tox/
htmlcov/
.coverage
.coverage.*
# Generated Output & Data
# LangExtract outputs are defaulted to test_output/
/test_output/
# Sphinx documentation build output
docs/_build/
# IDE / Editor specific
.idea/
.vscode/
*.swp
*.swo
*~
.*.swp
.*.swo
# OS-specific
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp
*.lnk
# Development tools & environments
.python-version
.pytype/
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.ruff_cache/
*.sage.py
.hypothesis/
.scrapy
# Jupyter Notebooks
.ipynb_checkpoints
*/.ipynb_checkpoints/*
profile_default/
ipython_config.py
# Logs and databases
*.log
*.sql
*.sqlite
*.sqlite3
db.sqlite3
db.sqlite3-journal
logs/
*.pid
# Security and secrets
*.key
*.pem
*.crt
*.csr
.env.local
.env.production
.env.*.local
secrets/
credentials/
# AI tooling
CLAUDE.md
.claude/settings.local.json
.aider.chat.history.*
.aider.input.history
.gemini/
GEMINI.md
# Package managers
pip-log.txt
pip-delete-this-directory.txt
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
package-lock.json
yarn.lock
pnpm-lock.yaml
# Local development
local_settings.py
instance/
.webassets-cache
.sass-cache/
*.css.map
*.js.map
.dev/
# Temporary files
tmp/
temp/
cache/
*.tmp
*.bak
*.backup
*.orig
.~lock.*#
# Archives
*.tar
*.tar.gz
*.zip
*.rar
*.7z
*.dmg
*.iso
*.jar
# Media files
*.mp4
*.avi
*.mov
*.wmv
*.flv
*.mp3
*.wav
*.ogg
# Benchmark results and local environment
langextract_env/
benchmarks/benchmark_results
# Benchmark results in root
benchmark_results/**/*.json
benchmark_results/**/*.jsonl
benchmark_results/**/*.html