Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

devcontainer.json 892 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  1. {
  2. "name": "promptfoo_dev",
  3. "dockerComposeFile": ["docker-compose.yml"],
  4. "service": "promptfoo_dev",
  5. "workspaceFolder": "/workspace",
  6. "remoteUser": "node",
  7. "customizations": {
  8. "vscode": {
  9. "settings": {
  10. "editor.defaultFormatter": "esbenp.prettier-vscode",
  11. "editor.formatOnSave": true,
  12. "editor.codeActionsOnSave": {
  13. "source.organizeImports": "never",
  14. "source.trimTrailingWhitespace": "always",
  15. "source.trimAutoWhitespace": "always"
  16. },
  17. "[typescript]": {
  18. "editor.defaultFormatter": "esbenp.prettier-vscode",
  19. "editor.inlayHints.enabled": "on"
  20. },
  21. "terminal.integrated.defaultProfile.linux": "zsh"
  22. },
  23. "extensions": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint", "GitHub.copilot"]
  24. }
  25. },
  26. "postCreateCommand": "npm ci && npm run build && npm link"
  27. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...