Manage TODOs, NOTEs, etc. from inside Atom.
Note: This package requires bottom-dock
[{ regexName: "FIXME", regexString: "/\\b@?TODO:?\\s(.+$)/g" }]
[ '**/node_modules/**' ]
Note: the config for todo-manager will be empty since the default values aren't saved to the config file. If you want to keep the default settings you will also need to include the values below:
"todo-manager":
regexes: [
{
regexName: "TODO"
regexString: "/\\b@?TODO:?\\s(.+$)/g"
}
{
regexName: "NOTE"
regexString: "/\\b@?NOTE:?\\s(.+$)/g"
}
{
regexName: "FIXME"
regexString: "/\\b@?FIXME:?\\s(.+$)/g"
}
]
ignoredNames: [
"**/node_modules/**"
"**/vendor/**"
"**/bower_components/**"
]
Note: