Skip to content

Commit

Permalink
add vscode setting (workspace)
Browse files Browse the repository at this point in the history
  • Loading branch information
gawaooooo committed Jan 13, 2020
1 parent 349972d commit 2accef0
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// See http://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": [
"coenraads.bracket-pair-colorizer",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"hex-ci.stylelint-plus",
"msjsdiag.debugger-for-chrome",
"ms-vsliveshare.vsliveshare",
"oderwat.indent-rainbow",
"VisualStudioExptTeam.vscodeintellicode",
"vscode-icons-team.vscode-icons"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
15 changes: 15 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.codeActionsOnSaveTimeout": 2000,
"editor.formatOnSave": false,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"typescript.tsdk": "node_modules/typescript/lib",
"[markdown]": {
"files.trimTrailingWhitespace": false
}
}

0 comments on commit 2accef0

Please sign in to comment.