Last active
August 6, 2018 07:22
-
-
Save ddelizia/f6a2d49680867fde7e145d977e16d5c8 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"code-runner.runInTerminal": true, | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.colorTheme": "Cobalt2", | |
"editor.fontSize": 12, | |
"editor.formatOnSave": true, | |
"files.autoSaveDelay": 10000, | |
"files.autoSave": "afterDelay", | |
"python.pythonPath": "${workspaceFolder}/venv/bin/python", | |
"python.linting.enabled": true, | |
"python.autoComplete.addBrackets": true, | |
"python.unitTest.unittestEnabled": true, | |
"python.unitTest.unittestArgs": [ | |
"-v", | |
"-s", | |
".", | |
"-p", | |
"test_*.py" | |
], | |
"python.unitTest.pyTestEnabled": true, | |
"python.unitTest.pyTestPath": "${python.pythonPath} -m pytest", | |
"python.unitTest.pyTestArgs": [], | |
"python.unitTest.cwd": "${workspaceFolder}", | |
"python.linting.mypyArgs": [ | |
"--ignore-missing-imports", | |
"--follow-imports=silent", | |
"disable=E1101" | |
], | |
"python.linting.flake8Path": "${python.pythonPath} -m flake8", | |
"python.linting.pylintPath": "${python.pythonPath} -m pylint", | |
"window.zoomLevel": 0, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add setting for visual studio code