From 8ee319a8e8480a283c77d4cc2366934b16a512a0 Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Mon, 20 Jan 2025 06:25:59 -0500 Subject: [PATCH] docs(.gitignore): added gitignore for Python, C, C++, and Fortran --- .gitignore | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..07227a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,59 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.env +*.venv +env/ +venv/ +ENV/ +ENV.bak/ +*.egg-info/ +dist/ +build/ +*.egg + +# C and C++ (using Meson) +build/ +*.o +*.a +*.so +*.d +*.dSYM/ +*.exe +*.out +*.obj +*.dll +*.lib +*.pdb +*.exp +*.log +*.stackdump + +# Fortran +*.mod +*.o +*.a +*.so +*.exe +*.out + +# Doxygen +html/ +latex/ +xml/ +man/ +rtf/ +tags + +## Misc +*.swp +*._DS_Store +*.DS_Store +*.bak +*.tmp +*.log +*.cache +*.private +*.private/ \ No newline at end of file