From 9ad550dfcb1b88668e880c5eae45a8ebdc96ad4e Mon Sep 17 00:00:00 2001 From: David Lechner Date: Thu, 9 May 2019 11:46:31 -0500 Subject: [PATCH] vscode: add settings are extension recommendations this will help users get a dev environment setup more easliy --- .gitignore | 4 ---- .vscode/extensions.json | 12 ++++++++++++ .vscode/settings.json | 6 ++++++ 3 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 6eb379e..1c14fd5 100644 --- a/.gitignore +++ b/.gitignore @@ -50,10 +50,6 @@ user.props ###################### genrst/ -# VS Code local settings -###################### -.vscode/* - # Mac OS cache ###################### .DS_Store diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..b6d8227 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,12 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. + // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp + + // List of extensions which should be recommended for users of this workspace. + "recommendations": [ + "ms-python.python" + ], + // List of extensions recommended by VS Code that should not be recommended for users of this workspace. + "unwantedRecommendations": [ + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f4faf81 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "python.pythonPath": "${workspaceFolder}/.venv", + "python.linting.pep8Enabled": false, + "python.linting.flake8Enabled": true, + "python.linting.enabled": true +} \ No newline at end of file