|
25 | 25 | "[python]": {
|
26 | 26 | "editor.formatOnSave": true,
|
27 | 27 | "editor.codeActionsOnSave": {
|
28 |
| - "source.organizeImports": true |
29 |
| - } |
| 28 | + "source.organizeImports.isort": true |
| 29 | + }, |
| 30 | + "editor.defaultFormatter": "ms-python.black-formatter", |
30 | 31 | },
|
31 | 32 | "[typescript]": {
|
32 | 33 | "editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
45 | 46 | "editor.formatOnSave": true
|
46 | 47 | },
|
47 | 48 | "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", |
50 | 49 | "typescript.preferences.quoteStyle": "single",
|
51 | 50 | "javascript.preferences.quoteStyle": "single",
|
52 |
| - "typescriptHero.imports.stringQuoteStyle": "'", |
53 | 51 | "prettier.printWidth": 120,
|
54 | 52 | "prettier.singleQuote": true,
|
55 | 53 | "editor.codeActionsOnSave": {
|
56 | 54 | "source.fixAll.eslint": true
|
57 | 55 | },
|
58 | 56 | "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 |
| - ], |
66 | 57 | "typescript.preferences.importModuleSpecifier": "relative",
|
67 |
| - "debug.javascript.usePreview": false, |
68 | 58 | // Branch name suggestion.
|
69 | 59 | "git.branchProtectionPrompt": "alwaysCommitToNewBranch",
|
70 | 60 | "git.branchRandomName.enable": true,
|
|
0 commit comments