gitfolio/.prettierrc.json

18 lines
257 B
JSON
Raw Permalink Normal View History

2019-12-09 16:14:00 +00:00
{
"overrides": [
{
2019-12-11 17:10:27 +00:00
"files": ["*.html", "*.ejs"],
2019-12-09 16:14:00 +00:00
"options": {
"parser": "html",
"htmlWhitespaceSensitivity": "ignore"
}
2019-12-15 16:35:21 +00:00
},
{
"files": "*.md",
"options": {
"tabWidth": 4
}
2019-12-09 16:14:00 +00:00
}
]
}