Skip to content

Instantly share code, notes, and snippets.

@adamjohnson
Created October 8, 2014 21:53
Show Gist options
  • Save adamjohnson/ae0eb27b11fb061c1366 to your computer and use it in GitHub Desktop.
Save adamjohnson/ae0eb27b11fb061c1366 to your computer and use it in GitHub Desktop.
My SublimeTodoReview settings. Excluding node_modules and .git, responds to TODO: and NOTE:, and orders your to-do's on top when the list get's generated.
{
"patterns": {
"TODO": "TODO[\\s]*?:[\\s]*(?P<todo>.*)$",
"NOTE": "NOTE[\\s]*?:[\\s]*(?P<note>.*)$"
},
"patterns_weight": {
"TODO": 10,
"NOTE": 20
},
"exclude_folders": [
"*.git*",
"*node_modules*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment