Skip to content

Commit

Permalink
chore: add minimal vscode settings and extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
maurelian committed Jun 17, 2021
1 parent b74b052 commit 71d0608
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"esbenp.prettier-vscode",
"editorconfig.editorconfig",
"juanblanco.solidity",
"golang.go",
],
}
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"prettier.configPath": "./.prettierrc.json",
"prettier.ignorePath": "",
"prettier.prettierPath": "./.node_modules/prettier",
"prettier.useEditorConfig": true,
"editorconfig.generateAuto": false,
}

0 comments on commit 71d0608

Please sign in to comment.