forked from bartolli/codanna
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.codannaignore
More file actions
70 lines (60 loc) · 965 Bytes
/
.codannaignore
File metadata and controls
70 lines (60 loc) · 965 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
# Codanna ignore patterns (gitignore syntax)
# https://git-scm.com/docs/gitignore
#
# This file tells codanna which files to exclude from indexing.
# Each line specifies a pattern. Patterns follow the same rules as .gitignore.
# Build artifacts
target/
build/
dist/
*.o
*.so
*.dylib
*.exe
*.dll
# Test files (uncomment to exclude tests from indexing)
# tests/
# *_test.rs
# *.test.js
# *.spec.ts
# test_*.py
# Temporary files
*.tmp
*.temp
*.bak
*.swp
*.swo
*~
.DS_Store
# Codanna's own directory
.codanna/
# Dependency directories
node_modules/
vendor/
.venv/
venv/
__pycache__/
*.egg-info/
.cargo/
# IDE and editor directories
.idea/
.vscode/
*.iml
.project
.classpath
.settings/
# Documentation (uncomment if you don't want to index docs)
# docs/
# *.md
# Generated files
*.generated.*
*.auto.*
*_pb2.py
*.pb.go
# Version control
.git/
.svn/
.hg/
# Example of including specific files from ignored directories:
# !target/doc/
# !vendor/specific-file.rs