I am using Sublime Linter and cannot get PEP 8 (W191) to go away 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"
]
}
Try setting Packages/User/SublimeLinter.sublime-settings
to the following:
{
"pep8": false,
"pep8_ignore":
[
"W191"
]
}
and see if that fixes things. SublimeLinter may not be looking in your regular user settings file for these options.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With