Add extensions recommendations and remove settings

This commit is contained in:
Luciana Abud 2023-07-21 11:47:48 -07:00
Родитель 3bd064e04d
Коммит d73cf2226d
3 изменённых файлов: 12 добавлений и 5 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -106,6 +106,7 @@ ENV/
.vs/
.vscode/*
!.vscode/launch.json
!.vscode/extensions.json
# PyDev
.project

9
.vscode/extensions.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,9 @@
{
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.flake8",
"ms-python.black-formatter"
]
}

Просмотреть файл

@ -5,11 +5,7 @@
}
],
"settings": {
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.envFile": "${workspaceFolder}/.env",
"python.formatting.provider": "black",
"files.exclude": {
"**/*.pyc": true,
"**/*.pyo": true,
@ -22,6 +18,7 @@
"python.analysis.extraPaths": [
"src/debugpy/_vendored",
"src/debugpy/_vendored/pydevd"
]
],
"editor.defaultFormatter": "ms-python.black-formatter"
}
}