1
0
mirror of https://github.com/gitattributes/gitattributes.git synced 2025-01-22 00:08:52 -05:00

Normalize svg type (Fixes #45)

This commit is contained in:
Richie Bendall 2019-04-20 12:10:44 +12:00
parent a452a365b1
commit d1514be2a5
No known key found for this signature in database
GPG Key ID: 1C6A99DFA9D306FC
2 changed files with 11 additions and 5 deletions

View File

@ -38,10 +38,12 @@
*.tif binary
*.tiff binary
*.ico binary
# SVG treated as an asset (binary) by default. If you want to treat it as text,
# comment-out the following line and uncomment the line after.
*.svg binary
#*.svg text
# SVG treated as an asset (binary) by default.
*.svg text
# If you want to treat it as text,
# use the following line instead.
# *.svg binary
*.eps binary
#

View File

@ -141,7 +141,11 @@ Procfile text
*.png binary
*.psb binary
*.psd binary
*.svg text
# SVG treated as an asset (binary) by default.
*.svg text
# If you want to treat it as text,
# use the following line instead.
# *.svg binary
*.svgz binary
*.tif binary
*.tiff binary