This repository has been archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
133 lines (117 loc) · 3.72 KB
/
.gitattributes
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# This file, .gitattributes, ensures that Git reads line endings consistently
# among all contributors, regardless of their 'core.autocrlf' setting.
#
# File settings:
# binary Leave these files untouched.
# (equivalent to 'text -diff')
# export-ignore Omit these files when generating a downloadable archive
# of the repository contents.
# text Convert the line endings in these files on checkout to
# match the native line endings in the operating system.
# text eol=lf Always convert line endings to LF (Unix-style).
# text eol=crlf Always convert line endings to CRLF (Windows-style).
# text -diff Skip diffing these files when merging.
#
# Read more:
# https://docs.github.com/en/get-started/getting-started-with-git/configuring-git-to-handle-line-endings
# Git should figure out how to handle files that have not been declared below.
* text=auto
# Source code.
*.css text
*.dart text
*.html text
*.gradle text
*.java text
*.js text
*.jsx text
*.kt text
*.kts text
*.map text -diff
*.py text
*.svelte text
*.ts text
*.tsx text
*.vue text
# Data interchange.
*.conf text
*.http text
*.json text
*.properties text
*.xml text
*.yaml text
*.yml text
# Unix-based scripts.
*.bash text eol=lf
*.sh text eol=lf
*.zsh text eol=lf
# Windows-based scripts.
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Fonts.
*.eot binary
*.otf binary
*.ttf binary
*.woff binary
*.woff2 binary
# Graphics.
*.avif binary
*.gif binary
*.heic binary
*.heif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary
*.tif binary
*.tiff binary
*.svg text
*.webp binary
# Audio.
*.mp3 binary
*.ogg binary
*.opus binary
*.wav binary
# Video.
*.mkv binary
*.mov binary
*.mp4 binary
*.webm binary
# Documents.
*.csv text
*.docx binary
*.pdf binary
# Archives.
*.7z binary
*.gz binary
*.tar binary
*.tgz binary
*.zip binary
# Build artifacts.
*.class binary
*.dll binary
*.ear binary
*.jar binary
*.war binary
# Documentation.
*.adoc text
*.md text
*.txt text
CHANGELOG text
CONTRIBUTING text
COPYRIGHT text
LICENSE text
# Docker.
.dockerignore text
Dockerfile text
# Node.
.editorconfig text
.env text
.npmignore text
browserslist text
package.json text eol=lf
package-lock.json text -diff
yarn.lock text -diff
# Git.
.gitattributes text
.gitignore text