.prettierignore 574 B

123456789101112131415161718192021222324252627282930313233
  1. # Ignore everything
  2. *
  3. # Unignore directories (to all depths) and unignore code and style files in these directories
  4. !.concierge/**/
  5. !.github/**/
  6. !.vscode/**/
  7. !Apps/**/
  8. !Documentation/**/
  9. !Source/**/
  10. !Specs/**/
  11. !Tools/**/
  12. !**/*.js
  13. !**/*.cjs
  14. !**/*.css
  15. !**/*.html
  16. !**/*.md
  17. !**/*.ts
  18. # Re-ignore a few things caught above
  19. **/*.min.js
  20. Source/Cesium.js
  21. Source/Scene/GltfPipeline/**
  22. Source/Shaders/**/*.js
  23. Source/ThirdParty/**
  24. Source/Workers/**/*
  25. Specs/jasmine/**
  26. Apps/Sandcastle/ThirdParty
  27. !Source/Workers/cesiumWorkerBootstrapper.js
  28. !Source/Workers/transferTypedArrayTest.js