Skip to content
Snippets Groups Projects
.gitignore 1.05 KiB
Newer Older
  • Learn to ignore specific revisions
  • kongr45gpen's avatar
    kongr45gpen committed
    # Build files
    
    kongr45gpen's avatar
    kongr45gpen committed
    cmake-build-debug
    
    
    # Documentation output
    /docs/html
    /docs/latex
    
    kongr45gpen's avatar
    kongr45gpen committed
    
    
    # Dump and continuous integration files
    *.dump
    __pycache__
    /ci/cppcheckdata.py
    /ci/misra.py
    /ci/report.msr
    
    
    kongr45gpen's avatar
    kongr45gpen committed
    # Prerequisites
    *.d
    
    # Compiled Object files
    *.slo
    *.lo
    *.o
    *.obj
    
    # Precompiled Headers
    *.gch
    *.pch
    
    # Compiled Dynamic libraries
    *.so
    *.dylib
    *.dll
    
    # Fortran module files
    *.mod
    *.smod
    
    # Compiled Static libraries
    *.lai
    *.la
    *.a
    *.lib
    
    # Executables
    *.exe
    *.out
    *.app
    
    kongr45gpen's avatar
    kongr45gpen committed
    
    # User-specific stuff
    .idea/**/workspace.xml
    .idea/**/tasks.xml
    .idea/**/usage.statistics.xml
    .idea/**/dictionaries
    .idea/**/shelf
    
    # Generated files
    .idea/**/contentModel.xml
    
    # 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
    
    .vscode