Show a list of lint errors at the bottom of sublime text

I just got exalted text 3 and I install sublinter and eslint . Therefore, errors are displayed on the actual error line in. How can I make it show a list of all errors of the current document below?

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

enter image description here

+5
source share
1 answer

I personally tried to use SublimeLinter with SublimeLinter-contrib-tslint, but it did not go over to errors - it kept saying that there were no lint errors, although I could see them on the screen in separate files.

The closest I could get is what Atom provides (that I decided to step back due to lagging scroll navigation):

1) Selection, for example: Tools> Build system> TypeScript

2) Show console (Ctrl +)

3) Tools> Build (Ctrl + B)

enter image description here

+1
source

Source: https://habr.com/ru/post/1240377/


All Articles