VSCode configuration

This commit is contained in:
Ivan Kravets
2017-07-24 17:37:16 +03:00
parent f13537cabb
commit 53017b24d1

12
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,12 @@
{
"python.pythonPath": "${workspaceRoot}/.tox/develop/bin/python",
"python.formatting.provider": "yapf",
"files.exclude": {
"**/*.pyc": true,
"*.egg-info": true,
".cache": true,
"build": true,
"dist": true
},
"editor.rulers": [79]
}