-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
65 lines (56 loc) · 2.5 KB
/
.gitattributes
File metadata and controls
65 lines (56 loc) · 2.5 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
# Git Attributes for DevTeam6 Repository
# Ensures proper handling of files for AI visibility and version control
# ============================================================================
# DOCUMENTATION FILES - Text-based, AI-readable
# ============================================================================
*.md linguist-detectable linguist-documentation
*.txt linguist-documentation
README* linguist-documentation
# ============================================================================
# PDF & BINARY DOCUMENTS - Mark for proper indexing
# ============================================================================
# PDFs are binary but should be tracked in Git
*.pdf binary
*.pdf -diff
*.pdf linguist-documentation
# Specifically mark the QFaaS document
QFaaS*.pdf binary linguist-documentation
# ============================================================================
# DATA FILES - Structured, parseable
# ============================================================================
*.json linguist-data
*.yaml linguist-data
*.yml linguist-data
*.toml linguist-data
# Chat logs and conversation data
Copilt.ChatFeed*.json linguist-data
Copilt.ChatFeed*.md linguist-documentation
# ============================================================================
# SOURCE CODE FILES
# ============================================================================
*.js linguist-language=JavaScript
*.ts linguist-language=TypeScript
*.tsx linguist-language=TypeScript
*.py linguist-language=Python
*.rs linguist-language=Rust
*.go linguist-language=Go
# ============================================================================
# CONFIGURATION FILES
# ============================================================================
*.config.* linguist-vendored
package*.json linguist-vendored
tsconfig*.json linguist-vendored
vite.config.* linguist-vendored
# ============================================================================
# GENERATED/BUILD FILES - Exclude from language stats
# ============================================================================
dist/** linguist-generated
build/** linguist-generated
node_modules/** linguist-vendored
*.min.js linguist-generated
*.min.css linguist-generated
# ============================================================================
# GITHUB SPECIFIC
# ============================================================================
.github/** linguist-vendored
.github/workflows/*.yml linguist-vendored