1
0
mirror of synced 2025-12-30 03:01:36 -05:00
Files
docs/.prettierrc.json
2022-11-15 15:53:03 +00:00

20 lines
320 B
JSON

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