Created
February 19, 2020 18:03
-
-
Save binwilly/162e3db7ddf8b5abf8406df94dce2aa3 to your computer and use it in GitHub Desktop.
Todo tree config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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