-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
54 lines (47 loc) · 966 Bytes
/
.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
# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
# By default, all text files should have the "lf" (Unix) line endings
* text eol=lf
# Common files
*.yml text
*.xml text
*.yaml text
*.md text
*.txt text
*.json text
*.editorconfig text
*.config text
*.service text
*.sh text
*.zsh text
*.zshrc text
*.gitconfig text
*.gitattributes text
*.dockerignore text
Dockerfile text
VERSION text
*.ps1 text
# docs
*.css text
*.html text
*.js text
*.ts text
*.stylelintrc text
*.scss text
*.webmanifest text
*.svg text
# Windows text files that should be normalized to crlf
*.cmd text eol=crlf
*.bat text eol=crlf
# Binary files that should not be normalized or diffed
*.png binary
*.gif binary
*.jpg binary
*.bmp binary
*.ico binary
*.ttf binary
*.pdf binary
*.7z binary
*.zip binary
# To list all file extensions present in the repo in ps1:
# Get-Childitem -Recurse | Select-Object Extension -Unique