Skip to content

Commit

Permalink
maint/dev ~ update VSCode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
rivy committed Jul 31, 2022
1 parent b3e0378 commit 26ed28e
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
{
"[javascript]": {
// "editor.defaultFormatter": "dprint.dprint"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
// "editor.defaultFormatter": "dprint.dprint"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
// "editor.defaultFormatter": "dprint.dprint"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
// "editor.defaultFormatter": "dprint.dprint"
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"deno.enable": false,
"editor.formatOnSave": true,
"files.exclude": {
Expand All @@ -11,5 +27,14 @@
".history": true,
".nyc_output": true
},
"todo-tree.filtering.excludeGlobs": ["build", "dist"]
"indentRainbow.ignoreLinePatterns": [
"/[\t]+[ ]/g" // TAB indentaion with space alignment
// "/[ \t]* [*]/g",
// "/[ \t]+[/]{2}/g"
],
"todo-tree.filtering.excludeGlobs": [
"build",
"dist",
"vendor"
]
}

0 comments on commit 26ed28e

Please sign in to comment.