From 53017b24d1e58d3d6064426ed9d12dba6a898763 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 24 Jul 2017 17:37:16 +0300 Subject: [PATCH] VSCode configuration --- .vscode/settings.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..d6d00aee --- /dev/null +++ b/.vscode/settings.json @@ -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] +}