Contents

Turn off pylint warnings in the VSCode

Contents

I want to turn off pylint warnings in the vscode, someone tell me use ~/.pylintrc, but i found a better way to fix it.

 ENV
   VS Code version: 1.18.1
   Python version: 2.7.14

To do:
 Go to File > Preferences > Settings. Add the following to your user settings, add this code:

1
2
3
4
5
"python.linting.pylintArgs": [  
        "--disable=R,C"  
    ]  

```thank guys in this link : https://github.com/DonJayamanne/pythonVSCode/issues/570