14 lines
302 B
Plaintext
14 lines
302 B
Plaintext
# すべてのテキストファイルをUTF-8として扱う
|
|
* text=auto eol=lf
|
|
|
|
# Windows用のバッチファイルはCRLFを使用
|
|
*.bat text eol=crlf
|
|
|
|
# シェルスクリプトはLFを使用
|
|
*.sh text eol=lf
|
|
|
|
# 画像ファイルはバイナリとして扱う
|
|
*.jpg -text
|
|
*.png -text
|
|
*.gif -text
|