.prettierignore 528 B

12345678910111213141516171819202122232425262728293031
  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/Shaders/**/*.js
  22. Source/ThirdParty/**
  23. Source/Workers/**/*
  24. Apps/Sandcastle/ThirdParty
  25. !Source/Workers/cesiumWorkerBootstrapper.js
  26. !Source/Workers/transferTypedArrayTest.js