Last active
July 14, 2026 11:28
-
-
Save disouzam/4eb815a4aa9dbd57846075ed8acd76bd to your computer and use it in GitHub Desktop.
Better Todo Tree VS Code extension settings
This file contains hidden or 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
| { | |
| "better-todo-tree.general.tags": [ | |
| "BUG", | |
| "HACK", | |
| "FIXME", | |
| "TODO", | |
| "XXX", | |
| "[ ]", | |
| "[x]", | |
| "noqa" | |
| ], | |
| "better-todo-tree.general.tagGroups": { | |
| "Linter Issues": [ | |
| "noqa", | |
| ] | |
| }, | |
| "better-todo-tree.general.statusBar": "top three", | |
| "better-todo-tree.highlights.defaultHighlight": { | |
| "foreground": "#000000", | |
| "background": "#FFFF00", | |
| "borderRadius": "10px", | |
| "rulerLane": "left", | |
| "rulerColour": "#00aeff", | |
| "iconColour": "#00aeff", | |
| "gutterIcon": true, | |
| }, | |
| "better-todo-tree.highlights.customHighlight": { | |
| "BUG": { | |
| "icon": "bug" | |
| }, | |
| "HACK": { | |
| "icon": "tools" | |
| }, | |
| "FIXME": { | |
| "icon": "flame" | |
| }, | |
| "XXX": { | |
| "icon": "x" | |
| }, | |
| "[ ]": { | |
| "icon": "issue-draft" | |
| }, | |
| "[x]": { | |
| "icon": "issue-closed" | |
| }, | |
| "TODO": { | |
| "icon": "tasklist", | |
| "iconColour": "#8b0909", | |
| "rulerColour": "#8b0909", | |
| }, | |
| "Linter Issues": { | |
| "icon": "code-review", | |
| "iconColour": "#FF0000", | |
| "rulerColour": "#FF0000", | |
| } | |
| }, | |
| "better-todo-tree.filtering.includeGlobs": [ | |
| "**/*.bas", | |
| "**/*.js", | |
| "**/*.jsx", | |
| "**/*.ts", | |
| "**/*.tsx", | |
| "**/*.css", | |
| "**/*.scss", | |
| "**/*.php", | |
| "**/*.rb", | |
| "**/*.txt", | |
| "**/*.mdown", | |
| "**/*.py", | |
| "**/*.ipynb", | |
| "**/*.md" | |
| ] | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
References: