Created
April 28, 2020 02:50
-
-
Save pablogsal/37ae2aea955f3b1beb7c32b86718600d to your computer and use it in GitHub Desktop.
settings.json
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
{ | |
"python.pythonPath": "${workspaceFolder}/python", | |
"python.testing.pytestEnabled": false, | |
"python.testing.nosetestsEnabled": false, | |
"python.testing.unittestEnabled": true, | |
"C_Cpp.default.intelliSenseMode": "gcc-x64", | |
"C_Cpp.default.cppStandard": "c++11", | |
"C_Cpp.default.cStandard": "c99", | |
"files.associations": { | |
"pycore_object.h": "c", | |
"pycore_pystate.h": "c", | |
"pycore_gil.h": "c", | |
"pycore_condvar.h": "c", | |
"osdefs.h": "c", | |
"marshal.h": "c", | |
"pythonrun.h": "c", | |
"errcode.h": "c", | |
"tokenizer.h": "c", | |
"token.h": "c" | |
}, | |
"python.linting.flake8Enabled": true, | |
"python.linting.enabled": true, | |
"restructuredtext.confPath": "${workspaceFolder}/Doc", | |
"python.formatting.provider": "black", | |
"python.testing.unittestArgs": [ | |
"-v", | |
"-s", | |
"./Lib/test", | |
"-p", | |
"test_*.py" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment