Skip to content

Commit

Permalink
Remove deprecated settings (microsoft#22377)
Browse files Browse the repository at this point in the history
  • Loading branch information
karthiknadig authored Oct 30, 2023
1 parent 6d2ab8e commit ed6f460
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
4 changes: 3 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
"dbaeumer.vscode-eslint",
"ms-python.python",
"ms-python.black-formatter",
"ms-python.vscode-pylance"
"ms-python.vscode-pylance",
"ms-python.isort",
"ms-python.flake8"
]
}
16 changes: 3 additions & 13 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
"source.organizeImports.isort": true
},
"editor.defaultFormatter": "ms-python.black-formatter",
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
Expand All @@ -45,26 +46,15 @@
"editor.formatOnSave": true
},
"typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
"python.linting.enabled": false,
"python.formatting.provider": "black",
"typescript.preferences.quoteStyle": "single",
"javascript.preferences.quoteStyle": "single",
"typescriptHero.imports.stringQuoteStyle": "'",
"prettier.printWidth": 120,
"prettier.singleQuote": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"python.languageServer": "Default",
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"cucumberautocomplete.skipDocStringsFormat": true,
"python.linting.flake8Args": [
// Match what black does.
"--max-line-length=88"
],
"typescript.preferences.importModuleSpecifier": "relative",
"debug.javascript.usePreview": false,
// Branch name suggestion.
"git.branchProtectionPrompt": "alwaysCommitToNewBranch",
"git.branchRandomName.enable": true,
Expand Down

0 comments on commit ed6f460

Please sign in to comment.