|
20 | 20 | "customizations": { |
21 | 21 | "vscode": { |
22 | 22 | "extensions": [ |
| 23 | + "astral-sh.ty", |
23 | 24 | "charliermarsh.ruff", |
24 | 25 | "DavidAnson.vscode-markdownlint", |
25 | | - "GitHub.copilot", |
26 | 26 | "GitHub.copilot-chat", |
27 | 27 | "GitHub.vscode-github-actions", |
28 | 28 | "GitHub.vscode-pull-request-github", |
29 | 29 | "ms-azuretools.vscode-docker", |
30 | 30 | "ms-python.python", |
31 | | - "tamasfe.even-better-toml", |
32 | | - "visualstudioexptteam.vscodeintellicode" |
| 31 | + "tamasfe.even-better-toml" |
33 | 32 | ], |
34 | 33 | "settings": { |
| 34 | + "chat.extensionUnification.enabled": true, |
| 35 | + "editor.bracketPairColorization.enabled": true, |
| 36 | + "editor.codeActionsOnSave": { |
| 37 | + "source.fixAll": "explicit", |
| 38 | + "source.organizeImports": "explicit" |
| 39 | + }, |
35 | 40 | "editor.formatOnSave": true, |
| 41 | + "[python]": { |
| 42 | + "editor.defaultFormatter": "charliermarsh.ruff" |
| 43 | + }, |
36 | 44 | "[toml]": { |
37 | 45 | "editor.formatOnSave": false |
38 | 46 | }, |
39 | 47 | "editor.rulers": [ |
40 | 48 | 100 |
41 | 49 | ], |
42 | 50 | "files.autoSave": "onFocusChange", |
43 | | - "github.copilot.chat.agent.enabled": true, |
44 | 51 | "github.copilot.chat.codesearch.enabled": true, |
45 | | - "github.copilot.chat.edits.enabled": true, |
46 | | - "github.copilot.nextEditSuggestions.enabled": true, |
| 52 | + "jupyter.kernels.excludePythonEnvironments": [ |
| 53 | + "/usr/local/bin/python" |
| 54 | + ], |
| 55 | + "notebook.codeActionsOnSave": { |
| 56 | + "notebook.source.fixAll": "explicit", |
| 57 | + "notebook.source.organizeImports": "explicit" |
| 58 | + }, |
| 59 | + "notebook.formatOnSave.enabled": true, |
47 | 60 | "python.defaultInterpreterPath": "/opt/venv/bin/python", |
| 61 | + "python.languageServer": "None", |
48 | 62 | "python.terminal.activateEnvironment": false, |
| 63 | + "python.testing.pytestEnabled": true, |
49 | 64 | "terminal.integrated.env.linux": { |
50 | 65 | "GIT_EDITOR": "code --wait" |
51 | 66 | }, |
|
0 commit comments