| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- # Ignore the python virtualenv
- venv/*
- # User-specific stuff
- .idea/**/workspace.xml
- .idea/**/tasks.xml
- .idea/**/usage.statistics.xml
- .idea/**/dictionaries
- .idea/**/shelf
- # Generated files
- .idea/**/contentModel.xml
- # Sensitive or high-churn files
- .idea/**/dataSources/
- .idea/**/dataSources.ids
- .idea/**/dataSources.local.xml
- .idea/**/sqlDataSources.xml
- .idea/**/dynamic.xml
- .idea/**/uiDesigner.xml
- .idea/**/dbnavigator.xml
- # Ignore CMake output
- **/CMakeCache.txt
- cmake_install.cmake
- CMakeFiles/**
- # Ignore build results
- **/*.a
- build/
- *.bin
- # Ignore sonar scanner binaries
- sonar-scanner**
- build-wrapper**
- .sonarwork/
- # Ignore code coverage reports
- code_coverage_report/**
|