Skip to content

Commit

Permalink
add config file
Browse files Browse the repository at this point in the history
  • Loading branch information
yzalium committed Jul 7, 2024
1 parent 412b554 commit 27b3a66
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

### Deno ###
/.idea/
/.vscode/

/node_modules

Expand Down Expand Up @@ -250,4 +249,4 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# End of https://www.toptal.com/developers/gitignore/api/macos,windows,visualstudiocode,deno,node,vim
# End of https://www.toptal.com/developers/gitignore/api/macos,windows,visualstudiocode,deno,node,vim
15 changes: 15 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.defaultFormatter": "denoland.vscode-deno",
"editor.formatOnSave": true,
"deno.enable": true,
"deno.config": "./deno.json",
"typescript.suggest.autoImports": true,
"typescript.inlayHints.parameterNames.enabled": "none",
"typescript.inlayHints.variableTypes.enabled": false,
"typescript.inlayHints.functionLikeReturnTypes.enabled": false,
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
}
}

0 comments on commit 27b3a66

Please sign in to comment.