diff options
author | Cara Salter <cara@devcara.com> | 2023-03-27 11:53:41 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2023-03-27 11:53:41 -0400 |
commit | c8befe7c95b18869f995c4f2cbc2f4cf9c91924f (patch) | |
tree | de1c309c0119ea2b101c65b2b040956873e2b48b /.gitignore | |
download | 142bot-c8befe7c95b18869f995c4f2cbc2f4cf9c91924f.tar.gz 142bot-c8befe7c95b18869f995c4f2cbc2f4cf9c91924f.zip |
initial commit
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c9a6733 --- /dev/null +++ b/.gitignore @@ -0,0 +1,98 @@ +# Created by https://www.toptal.com/developers/gitignore/api/cmake,c++,visualstudiocode,vim +# Edit at https://www.toptal.com/developers/gitignore?templates=cmake,c++,visualstudiocode,vim + +### C++ ### +# 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 + +### 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/ + +### Vim ### +# Swap +[._]*.s[a-v][a-z] +!*.svg # comment out if you don't need vector files +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim +Sessionx.vim + +# Temporary +.netrwhist +*~ +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +# End of https://www.toptal.com/developers/gitignore/api/cmake,c++,visualstudiocode,vim + +build/ +config.json
\ No newline at end of file |