7

I just got sublime text 3 and I'm installing sublinter and eslint. So the errors get shown on the actual line the errors at. How can I get it to show a list of all the errors of the current document on the bottom?

Here's what I mean. (This is an image from atom.)

enter image description here

Horay
  • 1,388
  • 2
  • 19
  • 36
  • 1
    Maybe the closest thing you can do is this, from http://sublimelinter.readthedocs.org/en/latest/navigating.html: > At the bottom of the Sublime Text Tools menu, you will see a SublimeLinter submenu. Select SublimeLinter > Show All Errors. When you select the Show All Errors command, all errors in the view are displayed in a Quick Panel. – Keith Hall Jan 12 '16 at 09:19
  • Can you please post a screen shot? (I already uninstalled eslint.) – Horay Jan 13 '16 at 01:00
  • btw which theme you are using for the lint error tooltip – xkeshav May 19 '17 at 09:39

1 Answers1

3

I personally tried to use SublimeLinter with SublimeLinter-contrib-tslint but it didn't navigate to the errors - it kept saying there are no lint errors even though I could see them on the screen in the individual files..

The closest I could get to what Atom provides (which I decided to move away because of the lagging scroll navigation) is this:

1) Choosing for example: Tools > Build System > TypeScript

2) Show Console (Ctrl+)

3) Tools > Build (Ctrl+B)

enter image description here

Michail Michailidis
  • 11,792
  • 6
  • 63
  • 106