-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitattributes
61 lines (47 loc) · 1.3 KB
/
.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
55
56
57
58
59
60
61
# -----------------------------------------------
# .gitattributes
# -----------------------------------------------
# Set the default behavior, in case people don't have core.autocrlf set
# auto detects text files and performs LF normalization
* text=auto eol=lf
# linguist - ignore HTML, JS, and Rich Text Format
*.html linguist-vendored
*.js linguist-vendored
*.rtf linguist-vendored
*.tex linguist-vendored
*.bib linguist-vendored
# Allow Markdown
*.md linguist-detectable
*.md linguist-language=Markdown
# Allow R Markdown
*.Rmd linguist-detectable
*.Rmd linguist-language=RMarkdown
# Allow Quarto
*.qmd linguist-detectable
*.qmd linguist-language=Quarto
# Allow Python
*.py linguist-detectable
*.py linguist-language=Python
# Allow PowerShell
*.ps1 linguist-detectable
*.ps1 linguist-language=PowerShell
# Allow Shell
*.sh linguist-detectable
*.sh linguist-language=Shell
# Allow Batch
*.bat linguist-detectable
*.bat linguist-language=Batch
# Allow SQL
*.sql linguist-detectable
*.sql linguist-language=SQL
# Allow Docker
Dockerfile linguist-detectable
docker-compose.yml linguist-detectable
compose.yml linguist-detectable
Dockerfile linguist-language=Docker
# Allow YAML
*.yml linguist-detectable
*.yml linguist-language=YAML
# Allow JSON
*.json linguist-detectable
*.json linguist-language=JSON