From 495853eaec17dab68b2edd4dbfcc8bb01c978938 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Fri, 17 Feb 2023 09:51:00 -0800 Subject: [PATCH] gitignore: python, c, cpp --- .gitignore | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 93 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 3495515..89e29bb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,95 @@ -# Created by https://www.toptal.com/developers/gitignore/api/python -# Edit at https://www.toptal.com/developers/gitignore?templates=python +# Created by https://www.toptal.com/developers/gitignore/api/c,c++,cmake,python +# Edit at https://www.toptal.com/developers/gitignore?templates=c,c++,cmake,python + +### C ### +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +### C++ ### +# Prerequisites + +# Compiled Object files +*.slo + +# Precompiled Headers + +# Compiled Dynamic libraries + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai + +# Executables + +### CMake ### +CMakeLists.txt.user +CMakeCache.txt +CMakeFiles +CMakeScripts +Testing +Makefile +cmake_install.cmake +install_manifest.txt +compile_commands.json +CTestTestfile.cmake +_deps + +### CMake Patch ### +# External projects +*-prefix/ ### Python ### # Byte-compiled / optimized / DLL files @@ -8,7 +98,6 @@ __pycache__/ *$py.class # C extensions -*.so # Distribution / packaging .Python @@ -170,5 +259,4 @@ poetry.toml # ruff .ruff_cache/ -# End of https://www.toptal.com/developers/gitignore/api/python - +# End of https://www.toptal.com/developers/gitignore/api/c,c++,cmake,python