Reputation: 1023
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.
I have Anaconda on my machine but I don't see it under Package Settings.
Upvotes: 2
Views: 375
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
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