-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
Copy path.gitattributes
93 lines (86 loc) · 1.54 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
# Recipe from: https://help.github.com/articles/dealing-with-line-endings/#platform-all
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.abnf text
*.agc text
*.asn text
*.b text
*.bas text
*.bnf text
*.c text
*.cl text
*.cpp text
*.cs text
*.css text
*.csv text
*.dgs text
*.dot text
*.erl text
*.errors text
*.faa text
*.ffn text
*.fna text
*.g text
*.g4 text
*.g42 text
*.gff text
*.gml text
*.go text
*.gradle text
*.h text
*.html text
*.ics text
*.idl text
*.iri text
*.java text
*.js text
*.json text
*.kt text
*.lua text
*.m text
*.map text
*.md text
*.mo text
*.mps text
*.ora text
*.pas text
*.pc text
*.pgn text
*.php text
*.pkb text
*.pks text
*.properties text
*.proto text
*.py text
*.rb text
*.s text
*.sh text
*.smt2 text
*.sno text
*.sql text
*.st text
*.style text
*.swift text
*.tree text
*.ttl text
*.txt text
*.upnp text
*.vb text
*.vhd text
*.x text
*.xml text
*.yml text
access_log text
# Declare files that will always have LF line endings on checkout.
# Unicode input files end with *.txt, but should not be converted on Windows
/unicode/graphemes/examples/*.txt eol=lf
# Declare files that will always have CRLF line endings on checkout.
# Currently the /vb6/**/*.cls and *.frm file need this, otherwise the grammar fails.
*.cls text eol=crlf
*.frm text eol=crlf
# Denote all files that are truly binary and should not be modified.
*.pdf binary
*.png binary
**/examples/* linguist-vendored