forked from openfoodfacts/openfoodfacts-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
36 lines (27 loc) · 862 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
# Basic .gitattributes for a perl repo.
# prefer keeping line ending unix style
# since most files are used in linux docker containers
* text=auto eol=lf
# Source files
# ============
*.pl text linguist-language=Perl eol=lf
*.pm text linguist-language=Perl eol=lf
# Test files
# ============
*.t text linguist-language=Perl eol=lf
# Template::Toolkit
# =================
*.tt text linguist-language=HTML eol=lf
# Scripts
# =======
scripts/po-foreground.sh text=auto eol=lf
# we really need lf to avoid problems at execution time in docker
*.sh text=auto text=auto eol=lf
# Do not treat .csv.<number> files as Roff programming language files
# ===================================================================
*.csv.[0-9] linguist-language=CSV eol=lf
*.csv.[0-9][0-9] linguist-language=CSV eol=lf
# keeps sto safe
*.sto binary
[core]
autocrlf=false