1
votes

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?

1
Try: "pep8_ignore": ['E128']jedwards

1 Answers

1
votes

you miss E for Error. try this,

{  
    "pep8_ignore": ["E128"]
}  

you can use E for Error and W for warning. link