Update:Editor config/vscode settings/prettierrc

This commit is contained in:
advplyr
2024-06-16 09:49:05 -05:00
parent c52a60fe77
commit e79d09941c
5 changed files with 84 additions and 38 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"semi": false,
"singleQuote": true,
"printWidth": 400,
"proseWrap": "never",
"trailingComma": "none",
"overrides": [
{
"files": ["*.html"],
"options": {
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": false
}
}
]
}