add: vscode setting and prettier config

This commit is contained in:
purp1e
2024-09-21 00:25:20 +08:00
parent 09707cd5f6
commit 2898416add
4 changed files with 127 additions and 0 deletions

11
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
// TailwindCSS Class IntelliSense
"editor.quickSuggestions": {
"strings": true
},
// ESLint Autofix on Save
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.formatOnSave": false,
}