forked from bartolli/codanna
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
82 lines (71 loc) · 984 Bytes
/
.gitignore
File metadata and controls
82 lines (71 loc) · 984 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/target
.codanna/
.codanna/index/
.codanna-test-local/
.fastembed_cache
.logs/
# Build artifacts
*.rcgu.o
*.rmeta
# IDE
.idea/
.vscode/
# Tree-sitter development
/contributing/tree-sitter/grammars/
/contributing/tree-sitter/node_modules/
/contributing/tree-sitter/build/
/contributing/tree-sitter/target/
/contributing/tree-sitter/.cache/
/contributing/tree-sitter/.env
# Rust (additional)
.cargo/config.toml
**/target/
*.rlib
*.d
# Node.js
node_modules/
**/node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.pnpm-debug.log*
# Common build outputs
dist/
**/dist/
build/
**/build/
out/
**/out/
coverage/
.nyc_output/
# Logs, caches, temp
*.log
logs/
**/.cache/
cache/
tmp/
temp/
# Environment files
.env
.env.*
# OS junk
.DS_Store
Thumbs.db
ehthumbs.db
Icon?
._*
# Editor artifacts
*.swp
*.swo
*.bak
*.tmp
# Generated index files
index.db
index.db-*
index.scip
vendors/fastembed-rs
/scripts/*
!/scripts/
!/scripts/install.sh
!/scripts/install.ps1