Choices/.prettierrc.json

21 lines
337 B
JSON
Raw Permalink Normal View History

{
"singleQuote": true,
"trailingComma": "all",
2019-11-02 12:18:19 +01:00
"endOfLine": "lf",
"overrides": [
{
"files": ["*.svg"],
"options": {
"parser": "html",
"htmlWhitespaceSensitivity": "ignore"
}
},
{
"files": ["public/*.html"],
"options": {
"trailingComma": "es5"
}
}
]
}