I am work on Python in sublime text editor. and I'm added PEP8 packages.
I add 128 into following file "pep8_ignore"
. After adding 128
and save.
Preferences --> Package Setting --> SublimePythonIDE --> Seting User
{
"pep8_ignore": [128],
"pep8_max_line_length": 100,
}
Then after not display any of PEP8 syntax error/warning. What wrong I do?
How can I just ignore only 128 - E128: continuation line under-indented for visual indent
warning?
"pep8_ignore": ['E128']
– jedwards