-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.gitattributes
52 lines (37 loc) · 976 Bytes
/
.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
# Auto detect text files and perform LF normalization
# From https://github.com/alexkaratarakis/gitattributes
# Powered By https://richienb.github.io/gitattributes-generator
* text=auto
.gitattributes text eol=lf
.gitignore text eol=lf
# ejs文件
*.ejs text eol=lf
# jar文件
*.jar binary
# sh文件
*.sh text eol=lf
# js文件
*.js text eol=lf
# json文件
*.json text eol=lf
# Markdown文件
*.md text diff=markdown eol=lf
# 脚本文件
*.sh text eol=lf
# 文本文件
*.txt text eol=lf
# xml文件
*.xml text eol=lf
# GitHub Actions配置文件
.github/* text eol=lf
# yml文件
pnpm-lock.yaml text eol=lf
# 模块模板文件
install_module_template/ext/META-INF/** text eol=lf
install_module_template/generic/META-INF/** text eol=lf
install_module_template/os2_pad_generic/META-INF/** text eol=lf
install_module_template/projection/META-INF/** text eol=lf
# xml配置生成
module_src/* text eol=lf
.gitattributes export-ignore
.gitignore export-ignore