chore: setup project workspace for better DX (#1048)

* chore: setup project workspace for better DX

* chore: remove prettier ext
This commit is contained in:
Stephen Zhou 2023-02-08 18:43:13 +08:00 committed by GitHub
parent bd9003c24b
commit 94f97208e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 29 additions and 4 deletions

3
.gitignore vendored
View File

@ -15,7 +15,4 @@ build
# Jetbrains
.idea
# vscode
.vscode
bin/air

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"golang.go"
]
}

12
.vscode/project.code-workspace vendored Normal file
View File

@ -0,0 +1,12 @@
{
"folders": [
{
"name": "server",
"path": "../"
},
{
"name": "web",
"path": "../web"
},
],
}

8
web/.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,8 @@
{
"recommendations": [
"lokalise.i18n-ally",
"bradlc.vscode-tailwindcss",
"dbaeumer.vscode-eslint",
"csstools.postcss"
]
}

View File

@ -2,5 +2,8 @@
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"i18n-ally.localesPaths": [
"src/locales"
]
}