.gitignore 677 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Ignore the python virtualenv
  2. venv/*
  3. # User-specific stuff
  4. .idea/**/workspace.xml
  5. .idea/**/tasks.xml
  6. .idea/**/usage.statistics.xml
  7. .idea/**/dictionaries
  8. .idea/**/shelf
  9. # Generated files
  10. .idea/**/contentModel.xml
  11. # Sensitive or high-churn files
  12. .idea/**/dataSources/
  13. .idea/**/dataSources.ids
  14. .idea/**/dataSources.local.xml
  15. .idea/**/sqlDataSources.xml
  16. .idea/**/dynamic.xml
  17. .idea/**/uiDesigner.xml
  18. .idea/**/dbnavigator.xml
  19. # Ignore CMake output
  20. **/CMakeCache.txt
  21. cmake_install.cmake
  22. CMakeFiles/**
  23. # Ignore build results
  24. **/*.a
  25. build/
  26. *.bin
  27. # Ignore sonar scanner binaries
  28. sonar-scanner**
  29. build-wrapper**
  30. .sonarwork/
  31. # Ignore code coverage reports
  32. code_coverage_report/**