Created
October 8, 2014 21:53
-
-
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.
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
Show hidden characters
{ | |
"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