Skip to content

Commit ed6f460

Browse files
authored
Remove deprecated settings (#22377)
1 parent 6d2ab8e commit ed6f460

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

.vscode/extensions.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
"dbaeumer.vscode-eslint",
88
"ms-python.python",
99
"ms-python.black-formatter",
10-
"ms-python.vscode-pylance"
10+
"ms-python.vscode-pylance",
11+
"ms-python.isort",
12+
"ms-python.flake8"
1113
]
1214
}

.vscode/settings.json

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@
2525
"[python]": {
2626
"editor.formatOnSave": true,
2727
"editor.codeActionsOnSave": {
28-
"source.organizeImports": true
29-
}
28+
"source.organizeImports.isort": true
29+
},
30+
"editor.defaultFormatter": "ms-python.black-formatter",
3031
},
3132
"[typescript]": {
3233
"editor.defaultFormatter": "esbenp.prettier-vscode",
@@ -45,26 +46,15 @@
4546
"editor.formatOnSave": true
4647
},
4748
"typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
48-
"python.linting.enabled": false,
49-
"python.formatting.provider": "black",
5049
"typescript.preferences.quoteStyle": "single",
5150
"javascript.preferences.quoteStyle": "single",
52-
"typescriptHero.imports.stringQuoteStyle": "'",
5351
"prettier.printWidth": 120,
5452
"prettier.singleQuote": true,
5553
"editor.codeActionsOnSave": {
5654
"source.fixAll.eslint": true
5755
},
5856
"python.languageServer": "Default",
59-
"python.linting.pylintEnabled": false,
60-
"python.linting.flake8Enabled": true,
61-
"cucumberautocomplete.skipDocStringsFormat": true,
62-
"python.linting.flake8Args": [
63-
// Match what black does.
64-
"--max-line-length=88"
65-
],
6657
"typescript.preferences.importModuleSpecifier": "relative",
67-
"debug.javascript.usePreview": false,
6858
// Branch name suggestion.
6959
"git.branchProtectionPrompt": "alwaysCommitToNewBranch",
7060
"git.branchRandomName.enable": true,

0 commit comments

Comments
 (0)