-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
75 lines (61 loc) · 1.31 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
# General
# CR LF: Carriage return + line feed, Unicode characters 000D + 000A
# LF: Line feed, Unicode character 000A
# NEL: Next line, Unicode character 0085
# LS: Line separator, Unicode character 2028
# PS: Paragraph separator, Unicode character 2029
# Auto detect text files and perform LF normalization
* text=auto
# General
*.txt text
LICENSE text
OWNERS text
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
# Shell
*.sh eol=lf
*.zsh eol=lf
*.awk eol=lf
*.aliases eol=lf
# Git
*.gitattributes eol=lf linguist-language=gitattributes
*.gitignore eol=lf
*.gitkeep eol=lf
*.gitmodules eol=lf
.gitattributes export-ignore
.gitignore export-ignore
.gitkeep export-ignore
.gitmodules export-ignore
# configs
.editorconfig eol=lf
.tmux.conf eol=lf
# markdown
*.md text diff=markdown eol=lf
# vim
*.vim eol=lf
.vimrc eol=lf
.vimrc.settings eol=lf
# yaml
*.yaml eol=lf
*.yml eol=lf
# terraform
*.tf eol=lf
*.tfvars eol=lf
.terraform-version eol=lf
*.hcl eol=lf
# json
*.js eol=lf
*.jsx eol=lf
*.json eol=lf
# ruby
*.rb eol=lf
.ruby-version eol=lf
Gemfile eol=lf
# homebrew
Brewfile eol=lf
# python
*.py diff=python eol=lf
*.py3 diff=python eol=lf
# golang
*.go diff=golang eol=lf