更新时间:2021-04-15 13:32:11
BrowseSublimeLinter-annotations
SublimeLinter 3 plugin that marks annotations such as TODO, FIXME, etc.
Details
Installs
- Total 99K
- Win 50K
- Mac 30K
- Linux 19K
Apr 15 | Apr 14 | Apr 13 | Apr 12 | Apr 11 | Apr 10 | Apr 9 | Apr 8 | Apr 7 | Apr 6 | Apr 5 | Apr 4 | Apr 3 | Apr 2 | Apr 1 | Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 8 | 4 | 4 | 6 | 6 | 9 | 4 | 16 | 7 | 8 | 3 | 6 | 7 | 6 | 11 | 9 | 10 | 5 | 5 | 4 | 9 | 13 | 9 | 12 | 7 | 11 | 10 | 3 | 9 | 4 | 9 | 6 | 7 | 12 | 12 | 8 | 11 | 8 | 1 | 6 | 8 | 8 | 11 | 15 | 5 |
Mac | 1 | 5 | 4 | 3 | 2 | 3 | 2 | 2 | 3 | 3 | 3 | 0 | 5 | 2 | 2 | 3 | 8 | 6 | 2 | 2 | 2 | 4 | 2 | 5 | 3 | 2 | 3 | 2 | 4 | 4 | 10 | 2 | 2 | 2 | 4 | 3 | 4 | 5 | 8 | 2 | 3 | 4 | 2 | 3 | 4 | 3 |
Linux | 1 | 3 | 5 | 1 | 5 | 0 | 3 | 6 | 5 | 3 | 2 | 1 | 1 | 4 | 5 | 3 | 3 | 2 | 2 | 1 | 1 | 2 | 2 | 1 | 5 | 4 | 1 | 3 | 3 | 2 | 5 | 5 | 6 | 2 | 3 | 1 | 2 | 2 | 3 | 3 | 1 | 1 | 10 | 9 | 10 | 3 |
Readme
- Source
- raw.githubusercontent.com
SublimeLinter-annotations
This linter plugin for SublimeLinter highlights annotations in comments such as FIXME, NOTE, TODO, @todo, XXX, and README. It will be used with all files.
Installation
SublimeLinter must be installed in order to use this plugin.
Please use Package Control to install the linter plugin.
Settings
- SublimeLinter settings: http://sublimelinter.com/en/latest/settings.html
- Linter settings: http://sublimelinter.com/en/latest/linter_settings.html
Additional SublimeLinter-annotations settings:
Setting | Description |
---|---|
warnings | Comma-delimited list of words that will be highlighted as warnings. |
errors | Comma-delimited list of words that will be highlighted as errors. |
You may provide a string with multiple words separated by commas or a list of strings. Matching is case-sensitive and matches whole words.
For example:
"linters": {
"annotations": {
"infos": ["NOTA BENE", "FYI"],
"warnings": ["FOO", "BAR"],
"errors": ["WHAT?", "OMG!"]
}
}