Skip to content

Commit

Permalink
chore: vscode settings for project
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Feb 18, 2023
1 parent 074fb06 commit 9dc1b7e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint", "orta.vscode-twoslash-queries"]
}
15 changes: 14 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
"search.exclude": {
"**/build": true,
"**/__snapshots__": true,
"**/pnpm-lock.yaml": true,
"**/*.tsbuildinfo": true
},
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"editor.codeActionsOnSave": {
"source.addMissingImports": true,
"source.fixAll.eslint": true,
// Disable this because it will conflict with ESLint based import organizing.
"source.organizeImports": false
}
}

0 comments on commit 9dc1b7e

Please sign in to comment.