-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
44 lines (36 loc) · 769 Bytes
/
.gitattributes
File metadata and controls
44 lines (36 loc) · 769 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
###############################################################################
# .gitattributes
#
# Purpose:
# - Enforce LF endings
# - Ensure consistent diffs
# - Protect binary files
# - Enable clean CI and patch application
###############################################################################
* text=auto eol=lf
*.sh text eol=lf
*.bash text eol=lf
*.zsh text eol=lf
*.bats text eol=lf
*.md text eol=lf
*.txt text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf
.github/workflows/*.yml text eol=lf
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.svg binary
*.ico binary
*.pdf binary
*.zip binary
*.tar binary
*.gz binary
*.tgz binary
*.7z binary
*.jar binary
*.war binary
third_party/** -text
vendor/** -text