mirror of
https://github.com/usememos/memos.git
synced 2025-10-09 05:46:22 +08:00
chore: setup project workspace for better DX (#1048)
* chore: setup project workspace for better DX * chore: remove prettier ext
This commit is contained in:
parent
bd9003c24b
commit
94f97208e3
5 changed files with 29 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -15,7 +15,4 @@ build
|
|||
# Jetbrains
|
||||
.idea
|
||||
|
||||
# vscode
|
||||
.vscode
|
||||
|
||||
bin/air
|
||||
|
|
5
.vscode/extensions.json
vendored
Normal file
5
.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"golang.go"
|
||||
]
|
||||
}
|
12
.vscode/project.code-workspace
vendored
Normal file
12
.vscode/project.code-workspace
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"name": "server",
|
||||
"path": "../"
|
||||
},
|
||||
{
|
||||
"name": "web",
|
||||
"path": "../web"
|
||||
},
|
||||
],
|
||||
}
|
8
web/.vscode/extensions.json
vendored
Normal file
8
web/.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"lokalise.i18n-ally",
|
||||
"bradlc.vscode-tailwindcss",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"csstools.postcss"
|
||||
]
|
||||
}
|
5
web/.vscode/settings.json
vendored
5
web/.vscode/settings.json
vendored
|
@ -2,5 +2,8 @@
|
|||
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.eslint": true
|
||||
}
|
||||
},
|
||||
"i18n-ally.localesPaths": [
|
||||
"src/locales"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue