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 to find out the correct error code is to the view the lint error itself at the bottom of the screen.