Vscode writing python How to disable Flake8 prompt line too long

Source: Internet
Author: User

Using Vscode to write Python is quite comfortable, but if you install a grammar check plugin for vscode, such as Flake8, you will often be prompted with some very demanding grammatical problems, the most intolerable of which is line to long.

A row can only hold 79 characters? Obviously not enough! OCD is not tolerated for syntax error hints in code, so it must be eliminated.

On the command line, enter: Flake8--help, a help option is displayed, one of which is:

--max-line-length=n for the                          entiretyof thisrun. (default:79)

It seems that the maximum character limit for each line of Flake8 can be set, but only for a single run

Open Vscode's default Settings, search Flake8, there will be such a

"Python.linting.flake8Args": [],

Originally Vscode Call Flake8 time is can add parameters, so, we add a sentence in the user settings file, you can let Vscode call Flake8 each time add--max-line-length parameters, for example

"Python.linting.flake8Args": ["--max-line-length=248"]

This allows you to customize the maximum character limit for each line.

Vscode writing python How to disable Flake8 prompt line too long

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.