How can I ignore a lint error for a line with Sublime Text 3 Anaconda?

To disable lints for specific errors, go to the Anaconda.sublime-settings file (Preferences > Packages Settings > Anaconda > Settings). There you will find several options depending on which linter you are using. For example, to disable linting for “line too long” for pep8, fill in the following: “pep8_ignore”: [ “E501” ], Also, the easiest way … Read more

SublimeText encloses lines in white rectangles

If you still have a problem with those solutions suggested above (with anaconda lint): Disable linting altogether within the user-defined Anaconda settings file, Anaconda.sublime-settings, via the file menu: Sublime > Preferences > Package Settings > Anaconda > Settings – User: When it opens file, just type the following and save it away 😉 {“anaconda_linting”: false} … Read more