docs/.prettierrc.json

20 строки
320 B
JSON

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