mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Merge pull request #1334 from luabud/removedeprecatedsettings
Add extensions recommendations and remove deprecated settings
This commit is contained in:
commit
3bd802ea2a
3 changed files with 11 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -106,6 +106,7 @@ ENV/
|
|||
.vs/
|
||||
.vscode/*
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
|
||||
# PyDev
|
||||
.project
|
||||
|
|
|
|||
8
.vscode/extensions.json
vendored
Normal file
8
.vscode/extensions.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue