-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
108 lines (101 loc) · 3.14 KB
/
Copy path.gitattributes
File metadata and controls
108 lines (101 loc) · 3.14 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# Default: auto-detect text and normalise to LF in the index.
# Everything below only overrides the *working tree* checkout behaviour.
* text=auto
# ---------------------------------------------------------------------------
# .NET source and project files
# No eol= means each dev's core.autocrlf / core.eol decides. Set eol=lf here
# instead if you want to hard-enforce LF everywhere -- but keep it in sync
# with end_of_line in .editorconfig or `dotnet format --verify-no-changes`
# will fail in CI.
# ---------------------------------------------------------------------------
*.cs text diff=csharp
*.csx text diff=csharp
*.vb text
*.fs text
*.fsx text
*.csproj text
*.fsproj text
*.vbproj text
*.props text
*.targets text
*.resx text
*.config text
*.ruleset text
*.xaml text
*.cshtml text diff=html
*.razor text diff=html
*.sln text eol=lf
*.slnx text eol=lf
# ---------------------------------------------------------------------------
# Data, config and docs
# ---------------------------------------------------------------------------
*.json text
*.xml text
*.yml text
*.yaml text
*.toml text
*.md text diff=markdown
*.svg text
*.editorconfig text
.gitattributes text
.gitignore text
# ---------------------------------------------------------------------------
# Web assets (only relevant if the repo ships any)
# ---------------------------------------------------------------------------
*.js text
*.jsx text
*.ts text
*.tsx text
*.html text diff=html
*.css text
*.scss text
# ---------------------------------------------------------------------------
# Scripts -- these MUST be pinned regardless of platform.
# cmd.exe misparses LF in multi-line blocks and labels; sh needs LF.
# ---------------------------------------------------------------------------
*.sh text eol=lf
*.bash text eol=lf
*.zsh text eol=lf
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=lf
*.psm1 text eol=lf
*.psd1 text eol=lf
Dockerfile text eol=lf
*.dockerfile text eol=lf
justfile text eol=lf
Makefile text eol=lf
# Patches carry their own endings -- never touch them.
*.patch -text
# ---------------------------------------------------------------------------
# Binary
# ---------------------------------------------------------------------------
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.webp binary
*.mp4 binary
*.zip binary
*.gz binary
*.7z binary
*.tar binary
*.exe binary
*.dll binary
*.pdb binary
*.obj binary
*.vsix binary
*.nupkg binary
*.snupkg binary
*.snk binary
*.pfx binary
*.lockb binary
*.woff binary
*.woff2 binary
# ---------------------------------------------------------------------------
# Keep repo scaffolding out of `git archive` / source packages
# ---------------------------------------------------------------------------
.gitattributes export-ignore
.gitignore export-ignore
.github/ export-ignore