-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
99 lines (90 loc) · 2.69 KB
/
.gitattributes
File metadata and controls
99 lines (90 loc) · 2.69 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
# -------------------------------------------------------
# Core text normalization
# -------------------------------------------------------
* text=auto eol=lf
# -------------------------------------------------------
# PowerShell source & config
# -------------------------------------------------------
*.ps1 text eol=lf
*.psm1 text eol=lf
*.psd1 text eol=lf
*.ps1xml text eol=lf
*.pssc text eol=lf
*.psrc text eol=lf
PSScriptAnalyzerSettings.psd1 text eol=lf
# -------------------------------------------------------
# Tests
# -------------------------------------------------------
*.[Tt]est*.ps1 text eol=lf
*.[Tt]est*.psm1 text eol=lf
# -------------------------------------------------------
# Documentation
# -------------------------------------------------------
*.md text eol=lf
*.txt text eol=lf
*.help.txt text eol=lf
README* text eol=lf
CHANGELOG* text eol=lf
LICENSE* text eol=lf
CONTRIBUTING* text eol=lf
# -------------------------------------------------------
# Configuration / data files
# -------------------------------------------------------
*.json text eol=lf
*.jsonc text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.xml text eol=lf
*.lock text eol=lf
*.cfg text eol=lf
*.ini text eol=lf
*.env* text eol=lf
# -------------------------------------------------------
# Scripts
# -------------------------------------------------------
*.sh text eol=lf
*.bash text eol=lf
# -------------------------------------------------------
# Git & IDE files
# -------------------------------------------------------
.gitignore text eol=lf
.gitattributes text eol=lf
.gitmodules text eol=lf
.editorconfig text eol=lf
*.patch -text -whitespace
*.diff -text -whitespace
# -------------------------------------------------------
# Binary files
# -------------------------------------------------------
# Archives
*.zip binary
*.7z binary
*.tar binary
*.gz binary
*.rar binary
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text eol=lf
# Documents
*.pdf binary
# -------------------------------------------------------
# Special handling
# -------------------------------------------------------
**/ModuleVersion.psd1 -text merge=ours
# -------------------------------------------------------
# Export ignore
# -------------------------------------------------------
.github export-ignore
.vscode export-ignore
.gitignore export-ignore
.gitattributes export-ignore
.editorconfig export-ignore
*.code-workspace export-ignore
*.Tests.ps1 export-ignore
Tests/ export-ignore
test/ export-ignore
docs/ export-ignore