.gitignore: narrowed some of the exclusions / added CLion `.run` folder (#4395)

This commit is contained in:
Oliver Stöneberg 2022-08-23 21:19:38 +02:00 committed by GitHub
parent 467648bec6
commit 0cf174e18f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 46 additions and 42 deletions

88
.gitignore vendored
View File

@ -2,16 +2,16 @@
*.gcno *.gcno
*.o *.o
*.pyc *.pyc
cppcheck /cppcheck
cppcheck.exe /cppcheck.exe
cppcheck-core.dll cppcheck-core.dll
dmake /dmake
dmake.exe /dmake.exe
reduce reduce
reduce.exe reduce.exe
tags tags
testrunner /testrunner
testrunner.exe /testrunner.exe
tools/daca2*.html tools/daca2*.html
tools/dmake tools/dmake
tools/errmsg tools/errmsg
@ -20,6 +20,9 @@ tools/extracttests
# dump files generated by Cppcheck # dump files generated by Cppcheck
*.*.dump *.*.dump
# CTU info files generated by Cppcheck
*.*.ctu-info
# VS generated files # VS generated files
*.aps *.aps
*.idb *.idb
@ -31,17 +34,17 @@ tools/extracttests
*.sdf *.sdf
*.suo *.suo
*.user *.user
.vs/ /.vs/
UpgradeLog*.htm UpgradeLog*.htm
# VS build folders # VS build folders
bin/ bin/
Build/ Build/
BuildTmp/ BuildTmp/
cli/temp/ /cli/temp/
ipch/ ipch/
lib/temp/ /lib/temp/
test/temp/ /test/temp/
# XCode build folders and files # XCode build folders and files
*.mode[0-9]v[0-9] *.mode[0-9]v[0-9]
@ -49,32 +52,32 @@ test/temp/
build/ build/
# GUI build folders # GUI build folders
gui/debug/ /gui/debug/
gui/release/ /gui/release/
gui/temp/ /gui/temp/
# Other (generated) GUI files # Other (generated) GUI files
gui/*.qm /gui/*.qm
gui/cppcheck-gui /gui/cppcheck-gui
gui/cppcheck-gui.exe /gui/cppcheck-gui.exe
gui/gui.sln /gui/gui.sln
gui/gui.vcproj /gui/gui.vcproj
gui/help/online-help.qch /gui/help/online-help.qch
gui/help/online-help.qhc /gui/help/online-help.qhc
gui/Makefile /gui/Makefile
gui/Makefile.debug /gui/Makefile.debug
gui/Makefile.release /gui/Makefile.release
gui/qrc_gui.cpp /gui/qrc_gui.cpp
gui/test/Makefile /gui/test/Makefile
gui/test/*/Makefile /gui/test/*/Makefile
gui/test/*/*/Makefile /gui/test/*/*/Makefile
gui/test/benchmark/simple/benchmark-simple /gui/test/benchmark/simple/benchmark-simple
gui/test/cppchecklibrarydata/qrc_resources.cpp /gui/test/cppchecklibrarydata/qrc_resources.cpp
gui/test/cppchecklibrarydata/test-cppchecklibrarydata /gui/test/cppchecklibrarydata/test-cppchecklibrarydata
gui/test/filelist/test-filelist /gui/test/filelist/test-filelist
gui/test/projectfile/test-projectfile /gui/test/projectfile/test-projectfile
gui/test/translationhandler/test-translationhandler /gui/test/translationhandler/test-translationhandler
gui/test/xmlreportv2/test-xmlreportv2 /gui/test/xmlreportv2/test-xmlreportv2
# Doxygen output folder # Doxygen output folder
doxyoutput/ doxyoutput/
@ -102,18 +105,19 @@ prime
parts parts
stage stage
*.snap *.snap
snap/.snapcraft /snap/.snapcraft
# Manual folder # Manual folder
man/manual.log /man/manual.log
man/manual.tex /man/manual.tex
man/*.pdf /man/*.pdf
man/*.html /man/*.html
# CLion # CLion
.idea /.idea
/.metadata/ /.metadata/
cmake-* /cmake-build-*
/.run
# clang tooling temporary files # clang tooling temporary files
.clangd/ .clangd/
@ -123,7 +127,7 @@ compile_commands.json
/gui/.qmake.stash /gui/.qmake.stash
#vs code #vs code
.vscode /.vscode
#debian build system #debian build system
/debian /debian