-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
26 lines (24 loc) · 1008 Bytes
/
.gitattributes
File metadata and controls
26 lines (24 loc) · 1008 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
#==============================================================================
# Git Attributes (.gitattributes)
#
# Purpose:
# Defines attributes for Git to handle files correctly.
# Controls language detection, line endings, and merge strategies.
#
# Settings:
# - Mark vendor/plugin files as linguist-vendored (excluded from stats)
# - Use union merge for CHANGELOG.md and history files
# - Treat .md files as text
#
# Documentation:
# https://git-scm.com/docs/gitattributes
#==============================================================================
assets/fonts/* linguist-vendored
assets/js/main.min.js linguist-vendored
assets/js/lunr/* linguist-vendored
assets/js/plugins/* linguist-vendored
assets/js/vendor/* linguist-vendored
_sass/minimal-mistakes/vendor/* linguist-vendored
CHANGELOG.md text merge=union
docs/_docs/18-history.md text merge=union
*.md text