SublimeLinter does not obey pep8_ignore settings

I am using Sublime Linter and cannot force PEP 8 (W191) to leave with the following settings. Why?

{ "color_scheme": "Packages/Color Scheme - Default/Mac Classic.tmTheme", "fold_buttons": false, "font_face": "SourceCodePro-Regular", "font_size": 13.0, "ignored_packages": [ "Vintage" ], "line_padding_bottom": 1, "line_padding_top": 1, "word_wrap": true, "pep8": false, "pep8_ignore": [ "W191" ] } 
+6
source share
1 answer

Try setting Packages/User/SublimeLinter.sublime-settings to the following:

 { "pep8": false, "pep8_ignore": [ "W191" ] } 

and see if that fixes something. SublimeLinter may not look in your regular user settings file for these parameters.

+8
source

Source: https://habr.com/ru/post/945465/


All Articles