-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitattributes
85 lines (79 loc) · 2.77 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
# 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.
# (see https://github.com/github-linguist/linguist/blob/master/lib/linguist/languages.yml)
*.ada text linguist-language=Ada
*.adb text linguist-language=Ada
*.adc text linguist-language=Ada
*.ads text linguist-language=Ada
*.awk text linguist-language=Awk
*.c text linguist-language=C
*.cabal text linguist-language=Cabal Config
*.cbl text linguist-language=COBOL
*.cob text linguist-language=COBOL
*.cpp text linguist-language=C++
*.cpy text linguist-language=COBOL
*.cs text linguist-language=CSharp
*.daml text linguist-language=Haskell
*.dart text linguist-language=Dart
*.erl text linguist-language=Erlang
*.es text linguist-language=JavaScript
*.flix text linguist-language=Flix
*.go text linguist-language=Go
*.h text linguist-language=C
*.hpp text linguist-language=C++
*.hs text linguist-language=Haskell
*.hsc text linguist-language=Haskell
*.inc text linguist-language=Makefile
*.ini text linguist-language=INI
*.java text linguist-language=Java
*.js text linguist-language=JavaScript
*.json text linguist-language=JSON
*.jsx text linguist-language=JavaScript
*.kt text linguist-language=Kotlin
*.kts text linguist-language=Kotlin
*.md text linguist-documentation=true
*.mod test linguist-language=Modula-2
*.properties text linguist-language=INI
*.py text linguist-language=Python
*.rs text linguist-language=Rust
*.sbt text linguist-language=Scala
*.sc text linguist-language=Scala
*.scala text linguist-language=Scala
*.txt text linguist-language=Text
*.xml text linguist-language=XML
*.xslt text linguist-language=XSLT
*.wxi text linguist-language=XML
*.wxl text linguist-language=XML
*.wxs text linguist-language=XML
*.yaml text linguist-language=MiniYAML
*.zig text linguist-language=Zig
# Declare files that will always have CRLF line endings on checkout.
*.bat eol=crlf linguist-detectable=false
*.cmd eol=crlf linguist-detectable=false
*.ps1 eol=crlf linguist-detectable=false
*.sln text eol=crlf linguist-detectable=false
# https://github.com/github/linguist/blob/master/lib/linguist/languages.yml
Makefile text eol=crlf linguist-detectable=false
Makefile.inc text eol=crlf linguist-detectable=false
# Declare files that will always have LF line endings on checkout.
*.sh eol=lf linguist-detectable=false
# Denote all files that are truly binary and should not be modified.
*.bmp binary
*.class binary
*.dat binary
*.dll binary
*.gif binary
*.ico binary
*.jar binary
*.jpg binary
*.m4a binary
*.pdf binary
*.png binary
*.rtf binary
*.zip binary
# Project specific attributes
# https://aldomann.com/post/override-github-linguist-with-gitattributes-files/
bin/* linguist-vendored
docs/* linguist-documentation