You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

devcontainer.json 664 B

12345678910111213141516171819202122
  1. {
  2. "customizations": {
  3. "vscode": {
  4. "extensions": [
  5. "ms-python.python",
  6. "ms-toolsai.jupyter",
  7. "visualstudioexptteam.vscodeintellicode",
  8. "GitHub.copilot"
  9. ],
  10. "settings": {
  11. "terminal.integrated.profiles.linux": {
  12. "bash": {
  13. "path": "/bin/bash"
  14. }
  15. },
  16. "terminal.integrated.defaultProfile.linux": "bash"
  17. }
  18. }
  19. },
  20. "dockerFile": "Dockerfile",
  21. "updateContentCommand": "pip install -e . pre-commit && pre-commit install"
  22. }