-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
89 lines (71 loc) · 1.47 KB
/
Copy path.gitattributes
File metadata and controls
89 lines (71 loc) · 1.47 KB
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
# Auto-detect text files and perform LF normalization
* text=auto
# Denote all Python files as text
*.py text
# Denote all shell scripts as text
*.sh text
# Denote all Markdown files as text
*.md text
# Denote all YAML files as text
*.yaml text
*.yml text
# Denote all JSON files as text
*.json text
# Denote all TOML files as text
*.toml text
# Denote all JavaScript/TypeScript files as text
*.js text
*.ts text
*.jsx text
*.tsx text
# Denote all HTML files as text
*.html text
# Denote all CSS files as text
*.css text
# Denote all Rust files as text
*.rs text
# Denote all Java files as text
*.java text
# Denote all Go files as text
*.go text
# Denote all C/C++ files as text
*.c text
*.cpp text
*.h text
*.hpp text
# Denote all Lua files as text
*.lua text
# Denote all Zig files as text
*.zig text
# Line endings
*.sh eol=lf
*.py eol=lf
*.md eol=lf
*.yaml eol=lf
*.yml eol=lf
*.json eol=lf
*.toml eol=lf
*.js eol=lf
*.ts eol=lf
Makefile eol=lf
Dockerfile eol=lf
# Language-specific attributes
*.py diff=python
*.js diff=javascript
*.ts diff=typescript
*.rs diff=rust
*.go diff=go
*.java diff=java
*.zig diff=zig
# Linguist-specific overrides
*.coq linguist-language=Coq
*.v linguist-language=V
*.agda linguist-language=Agda
*.idr linguist-language=Idris
*.purs linguist-language=PureScript
*.elm linguist-language=Elm
*.rkt linguist-language=Racket
*.scm linguist-language=Scheme
*.clj linguist-language=Clojure
*.cljs linguist-language=Clojure
*.cljc linguist-language=Clojure