docs/.prettierrc.json

21 строка
357 B
JSON

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