The (very WIP) home of the next versions of my web presences
1# Codanna ignore patterns (gitignore syntax)
2# https://git-scm.com/docs/gitignore
3#
4# This file tells codanna which files to exclude from indexing.
5# Each line specifies a pattern. Patterns follow the same rules as .gitignore.
6
7# Build artifacts
8target/
9build/
10dist/
11*.o
12*.so
13*.dylib
14*.exe
15*.dll
16
17# Test files (uncomment to exclude tests from indexing)
18# tests/
19# *_test.rs
20# *.test.js
21# *.spec.ts
22# test_*.py
23
24# Temporary files
25*.tmp
26*.temp
27*.bak
28*.swp
29*.swo
30*~
31.DS_Store
32
33# Codanna's own directory
34.codanna/
35
36# Dependency directories
37node_modules/
38vendor/
39.venv/
40venv/
41__pycache__/
42*.egg-info/
43.cargo/
44
45# IDE and editor directories
46.idea/
47.vscode/
48*.iml
49.project
50.classpath
51.settings/
52
53# Documentation (uncomment if you don't want to index docs)
54# docs/
55# *.md
56
57# Generated files
58*.generated.*
59*.auto.*
60*_pb2.py
61*.pb.go
62
63# Version control
64.git/
65.svn/
66.hg/
67
68# Example of including specific files from ignored directories:
69# !target/doc/
70# !vendor/specific-file.rs