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