Skip to content

Commit 6779fb9

Browse files
authored
Merge pull request #846 from sheikhlimon/feat/devcontainer-setup
feat: add VS Code workspace settings for consistent editor setup
2 parents 46e2c6b + 62572b3 commit 6779fb9

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.vscode/extensions.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
// VS Code will prompt the user to install these extensions when they open the workspace
3+
"recommendations": [
4+
"esbenp.prettier-vscode",
5+
"dbaeumer.vscode-eslint",
6+
"bradlc.vscode-tailwindcss"
7+
],
8+
"unwantedRecommendations": []
9+
}

.vscode/settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
// Editor formatting and preferences
3+
"editor.formatOnSave": true,
4+
"files.eol": "\n",
5+
"editor.tabSize": 2,
6+
"prettier.requireConfig": true,
7+
"eslint.validate": [
8+
"javascript",
9+
"typescript",
10+
"javascriptreact",
11+
"typescriptreact"
12+
]
13+
}

0 commit comments

Comments
 (0)