vscode: add settings are extension recommendations

this will help users get a dev environment setup more easliy
This commit is contained in:
David Lechner
2019-05-09 12:21:17 -05:00
parent 4eecb284a8
commit 9ad550dfcb
3 changed files with 18 additions and 4 deletions
-4
View File
@@ -50,10 +50,6 @@ user.props
######################
genrst/
# VS Code local settings
######################
.vscode/*
# Mac OS cache
######################
.DS_Store
+12
View File
@@ -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": [
]
}
+6
View File
@@ -0,0 +1,6 @@
{
"python.pythonPath": "${workspaceFolder}/.venv",
"python.linting.pep8Enabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true
}