ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Sublime​Linter-annotations

by SublimeLinter ST3

SublimeLinter plugin that marks annotations such as TODO, FIXME, etc.

Details

  • 1.5.4
    1.5.3
  • github.​com
  • github.​com
  • 11 months ago
  • 5 minutes ago
  • 12 years ago

Installs

  • Total 111K
  • Win 56K
  • Mac 33K
  • Linux 22K
Aug 5 Aug 4 Aug 3 Aug 2 Aug 1 Jul 31 Jul 30 Jul 29 Jul 28 Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21
Windows 2 3 0 1 1 2 4 3 2 1 3 1 4 4 4 2 3 3 2 4 2 1 1 5 2 2 0 4 4 6 1 0 2 6 4 1 3 2 3 1 4 1 4 1 2 2
Mac 0 1 0 1 0 1 1 1 2 0 0 1 1 1 0 1 0 2 3 1 2 0 2 0 3 0 0 3 1 2 2 2 2 2 1 2 1 1 1 2 2 0 2 1 0 0
Linux 1 0 0 0 1 0 1 0 0 0 0 3 1 3 2 1 0 2 2 2 2 0 2 1 2 1 1 2 1 0 0 0 0 1 0 0 1 5 0 2 0 1 0 1 1 1

Readme

Source
raw.​githubusercontent.​com

SublimeLinter-annotations

Build Status

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

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.
infos Comma-delimited list of words that will be highlighted as infos.
mark_message Whether the rest of the comment line should be marked or just the word.
selector_ (advanced) A scope selector for regions that the word lists will be searched in.

Matching is case-sensitive and matches whole words.

For example:

"linters": {
    "annotations": {
        "infos": ["NOTA BENE", "FYI"],
        "warnings": ["FOO", "BAR"],
        "errors": ["WHAT?", "OMG!"]
    }
}