-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
61 lines (52 loc) · 2.07 KB
/
.gitattributes
File metadata and controls
61 lines (52 loc) · 2.07 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
# =============================================================================
# .gitattributes
# =============================================================================
# Copyright (c) 2025 Michael Gardner, A Bit of Help, Inc.
# SPDX-License-Identifier: BSD-3-Clause
# See LICENSE file in the project root.
# =============================================================================
# Git attributes for the Ada development container project.
# Configures GitHub Linguist, line endings, and archive exclusions.
# =============================================================================
# -----------------------------------------------------------------------------
# GitHub Linguist — Language Statistics
# -----------------------------------------------------------------------------
# This is a container project. The primary artifacts are the Dockerfile and
# entrypoint script. Mark support files so GitHub's language breakdown
# reflects the project accurately.
Dockerfile linguist-language=Dockerfile
entrypoint.sh linguist-language=Shell
# Build and CI files
Makefile linguist-vendored
*.yml linguist-vendored
.github/** linguist-vendored
# Documentation
*.md linguist-documentation
# Shell configuration
.zshrc linguist-vendored
# IDE and editor
.vscode/** linguist-vendored
.idea/** linguist-vendored
# -----------------------------------------------------------------------------
# Line Ending Configuration
# -----------------------------------------------------------------------------
# Ensure consistent LF line endings across platforms.
* text=auto eol=lf
# Binary files
*.tar binary
*.tar.gz binary
*.tar.xz binary
*.tgz binary
*.zip binary
*.png binary
*.jpg binary
*.jpeg binary
# -----------------------------------------------------------------------------
# Export Ignore (git archive exclusions)
# -----------------------------------------------------------------------------
# Excluded from archives created by `make compress` (git archive).
.claude/ export-ignore
.github/ export-ignore
.gitattributes export-ignore
.gitignore export-ignore
dist/ export-ignore