Releases: solomonrosemite/TypeScript-Todo
Releases · solomonrosemite/TypeScript-Todo
Simple Todo v1.9.0
As requested in #12. Simple todo v1.9.0 now support overriding actions!🥳🥳
These can be configured in the settings.json and would look something like this:
Note that the actions names and severity levels are not case sensitive.
Simple Todo v1.8.8
Another hotfix for release v1.8.6.
Simple Todo v1.8.7
Hot fix for release v1.8.6.
Simple Todo v1.8.6
Simple Todo v1.7.6 now adds support for multi comment actions.
Simple Todo v1.7.6
Simple Todo v1.7.6 extends the default list of languages when checking for actions.
Simple Todo v1.6.6
As request in this issue: #9 Simple Todo now supports overriding folder and file exclusions!🥳🥳
These can be configured using the settings.json and for example would look something like this:
{
"simpleTodo.overrideFoldersToIgnore": [
// Default exclusions
"Library",
"node_modules",
"dist",
"build",
".next",
// Custom added exclusions
"prod",
"vendor"
],
"simpleTodo.overrideLanguagesToCheck": [
// Defaults
"ts",
"js",
"html",
"bat",
"c",
"cpp",
"cs",
"go",
"java",
"lua",
"php",
"yaml",
"py",
"swift",
"dart",
"ps1",
// Custom
"txt" // Added because we use txt files for todos
]
}