Sublime python remove white frame beyond single word (E501)

method one

E501 error: the line is too long (more than 79 characters), set to ignore E501 error in the configuration file

Preferences-> Package Settings-> Anaconda-> Settings-User

Add the following code in the configuration file

{
    "pep8_ignore":
    [
        "E501"
    ]
}

Ctrl + s to save

 

Method Two

Change the maximum allowable length a little bit better, I set it to 999

Add the following code in the above configuration file

{
    "pep8_max_line_length": 999,
}

Ctrl + s to save

Guess you like

Origin www.cnblogs.com/NiGhT-Ray/p/12681202.html