settings.json 893 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "files.watcherExclude": {
  3. "**/.git/**": true,
  4. "**/cache/**": true,
  5. "**/tmp*/**": true,
  6. "**/downloads/**": true,
  7. "**/sstate-cache/**": true,
  8. "**/vscode-bitbake-build/**": true,
  9. "**/workspace/sources/**": true,
  10. "**/workspace/attic/**": true
  11. },
  12. "files.exclude": {
  13. "**/.git/**": true,
  14. "**/cache/**": true,
  15. "**/tmp*/**": true,
  16. "**/downloads/**": true,
  17. "**/sstate-cache/**": true,
  18. "**/vscode-bitbake-build/**": true,
  19. "**/workspace/sources/**": true,
  20. "**/workspace/attic/**": true
  21. },
  22. "python.analysis.exclude": [
  23. "**/.git/**",
  24. "**/cache/**",
  25. "**/tmp*/**",
  26. "**/downloads/**",
  27. "**/sstate-cache/**",
  28. "**/vscode-bitbake-build/**",
  29. "**/workspace/sources/**",
  30. "**/workspace/attic/**"
  31. ]
  32. }