Pylint 关掉一些非必要的提示信息

https://stackoverflow.com/questions/4341746/how-do-i-disable-a-pylint-warning

Visual studio code通常使用pylint做python语法检查,有时候会给出很多非必要的错误提示
比如说:
missing-function-docstring 函数没有注释
trailing-whitespace 多了一些空格
一些鸡毛蒜皮的东西

生成一个配置文件:

lint.py --generate-rcfile > standard.rc

将要关闭的提示名称加在

[MESSAGES CONTROL]
disable=....

的下面。

最后在vscode 的 设置里面加上pylint配置文件参数 --rcfile


图片.png

你可能感兴趣的:(Pylint 关掉一些非必要的提示信息)