forked from aidandenlinger/autocopr
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
28 lines (24 loc) · 798 Bytes
/
Copy path.gitattributes
File metadata and controls
28 lines (24 loc) · 798 Bytes
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
# Examples:
# https://docs.github.com/en/get-started/getting-started-with-git/configuring-git-to-handle-line-endings
# https://github.com/gitattributes/gitattributes
# Set the default behavior, in case people don't have core.autocrlf set.
# Auto detect text files and perform LF normalization
* text=auto
# Scripts
*.bash text eol=lf
*.sh text eol=lf
*.py text diff=python
# Serialisation
*.json text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
# Fix syntax highlighting on GitHub to allow comments
.devcontainer.json linguist-language=JSON-with-Comments
devcontainer.json linguist-language=JSON-with-Comments
.vscode/*.json linguist-language=JSON-with-Comments
#
# Exclude files from exporting
#
.gitattributes export-ignore
.gitignore export-ignore
.gitkeep export-ignore