Add formatting for svg files

vielle.dev 079ae660 761ca741

verified
Changed files
+8 -1
+6
.prettierrc
··· 6 6 "options": { 7 7 "parser": "astro" 8 8 } 9 + }, 10 + { 11 + "files": "*.svg", 12 + "options": { 13 + "parser": "html" 14 + } 9 15 } 10 16 ] 11 17 }
+2 -1
package.json
··· 6 6 "dev": "astro dev --port 3000", 7 7 "build": "astro build", 8 8 "preview": "astro preview", 9 - "astro": "astro" 9 + "astro": "astro", 10 + "fmt": "prettier . --write" 10 11 }, 11 12 "dependencies": { 12 13 "@astrojs/node": "^9.3.0",