A.E
A.E

Reputation: 1023

how to remove enclosed whitespaces in sublime text 3

I just installed sublime text 3; when I save the script and run it, whitespace and first line is enclosed with a rectangles. How can I remove those? I have attached the screen shot.enter image description here

I have Anaconda on my machine but I don't see it under Package Settings. enter image description here

Upvotes: 2

Views: 375

Answers (2)

A.E
A.E

Reputation: 1023

I don't know if there was a conflict with other packages or there is a bug in pylint but after I removed sublimelinter.pylint, the rectangles were gone.

Upvotes: 0

David Breen
David Breen

Reputation: 247

Have you installed Anaconda package? If yes, you need to set anaconda_linting to false in the settings.

To do this - Go to Preferences → Package Settings → Anaconda → Settings-User. Then paste the following code and save.

{ "anaconda_linting": false, }

Upvotes: 1

Related Questions