docs/.prettierrc.json

19 строки
287 B
JSON

{
"overrides": [
{
"files": ["**/*.{yml,yaml}"],
"options": {
"singleQuote": true
}
},
{
"files": ["**/*.{ts,tsx,js,mjs}"],
"options": {
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}
]
}