diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 00000000..bb575daf --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,9 @@ +{ + // VS Code will prompt the user to install these extensions when they open the workspace + "recommendations": [ + "esbenp.prettier-vscode", + "dbaeumer.vscode-eslint", + "bradlc.vscode-tailwindcss" + ], + "unwantedRecommendations": [] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..d1e87323 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,13 @@ +{ + // Editor formatting and preferences + "editor.formatOnSave": true, + "files.eol": "\n", + "editor.tabSize": 2, + "prettier.requireConfig": true, + "eslint.validate": [ + "javascript", + "typescript", + "javascriptreact", + "typescriptreact" + ] +}