feat: Prettier configuration for video editor

This commit is contained in:
Yiannis Christodoulou 2025-06-24 17:03:49 +03:00
parent f74874d656
commit c163d50b95
2 changed files with 20 additions and 1 deletions

View File

@ -1 +0,0 @@
*

View File

@ -0,0 +1,20 @@
{
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"bracketSpacing": true,
"arrowParens": "always",
"trailingComma": "none",
"endOfLine": "lf",
"overrides": [
{
"files": ["*.css", "*.scss"],
"options": {
"singleQuote": false
}
}
]
}