Created
August 21, 2020 15:08
-
-
Save Cyxapic/d124d779f9c1155b9e0c3b7581fc9be6 to your computer and use it in GitHub Desktop.
vscode settings PY
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "python.pythonPath": "PATH_TO/bin/python", | |
| "python.linting.pylintEnabled": false, | |
| "python.linting.flake8Enabled": true, | |
| "python.linting.enabled": true, | |
| "python.linting.flake8Args": [ | |
| "--max-line-length=120" | |
| ], | |
| "workbench.tree.indent": 20, | |
| "editor.fontSize": 16, | |
| "markdown.preview.fontSize": 16, | |
| "terminal.integrated.fontSize": 16, | |
| "debug.console.fontSize": 16, | |
| "editor.rulers": [ | |
| 120 | |
| ], | |
| "python.linting.mypyEnabled": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment