-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
24 lines (21 loc) · 821 Bytes
/
Copy path.gitattributes
File metadata and controls
24 lines (21 loc) · 821 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
# Scripts de shell PRECISAM ser LF. Um .sh com CRLF falha no Android com
# "bad interpreter: /bin/bash^M" ou com heredocs que nunca terminam — erros
# confusos e difíceis de diagnosticar no celular.
#
# Isto protege contra checkouts em máquinas com core.autocrlf=true (Windows/WSL),
# independente da config local de quem clonar.
*.sh text eol=lf
# O 'lx' nao tem extensao, entao a regra *.sh acima nao o alcanca.
# Sem esta linha ele vira CRLF em checkouts no Windows/WSL e falha no
# Android com "bad interpreter: /usr/bin/env bash^M".
lx text eol=lf
tests/* text eol=lf
# Docs e config também padronizados em LF.
*.md text eol=lf
LICENSE text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
# Binários, se algum dia entrarem: nunca converter.
*.apk binary
*.png binary
*.jpg binary