Skip to content

Instantly share code, notes, and snippets.

@binwilly
Created February 19, 2020 18:03
Show Gist options
  • Save binwilly/162e3db7ddf8b5abf8406df94dce2aa3 to your computer and use it in GitHub Desktop.
Save binwilly/162e3db7ddf8b5abf8406df94dce2aa3 to your computer and use it in GitHub Desktop.
Todo tree config
{
"window.zoomLevel": 0,
"editor.fontSize": 14,
"diffEditor.ignoreTrimWhitespace": true,
"workbench.startupEditor": "newUntitledFile",
"javascript.updateImportsOnFileMove.enabled": "never",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.updateImportsOnFileMove.enabled": "never",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"extensions.ignoreRecommendations": false,
"python.pythonPath": "/Users/willy/anaconda2/bin/python",
"editor.formatOnPaste": true,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.colorTheme": "Default Light+",
"terminal.integrated.shell.osx": "/bin/zsh",
"todo-tree.general.tags": [
"BUG",
"FIXME",
"TODO",
"@deprecated"
],
"todo-tree.filtering.excludeGlobs": [
"**/vendor/**",
"**/node_modules/**",
"**/dist/**",
"**/bower_components/**",
"**/build/**",
"**/.vscode/**",
"**/.github/**",
"**/_output/**",
"**/*.min.*",
"**/*.map"
],
"todo-tree.regex.regex": "(?:(?://|#|<!--|;|/\\\\*\\\\*?|\\\\*)\\\\s*($TAGS)|^\\\\s*- \\\\[ \\\\])",
"todo-tree.highlights.customHighlight": {
"@deprecated": {
"icon": "alert",
"iconColour": "black"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment