.gitignore (2603B)
1 # Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,linux,windows,osx,c,c++,cmake 2 # Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,linux,windows,osx,c,c++,cmake 3 4 ### C ### 5 # Prerequisites 6 *.d 7 8 # Object files 9 *.o 10 *.ko 11 *.obj 12 *.elf 13 14 # Linker output 15 *.ilk 16 *.map 17 *.exp 18 19 # Precompiled Headers 20 *.gch 21 *.pch 22 23 # Libraries 24 *.lib 25 *.a 26 *.la 27 *.lo 28 29 # Shared objects (inc. Windows DLLs) 30 *.dll 31 *.so 32 *.so.* 33 *.dylib 34 35 # Executables 36 *.exe 37 *.out 38 *.app 39 *.i*86 40 *.x86_64 41 *.hex 42 43 # Debug files 44 *.dSYM/ 45 *.su 46 *.idb 47 *.pdb 48 49 # Kernel Module Compile Results 50 *.mod* 51 *.cmd 52 .tmp_versions/ 53 modules.order 54 Module.symvers 55 Mkfile.old 56 dkms.conf 57 58 ### C++ ### 59 # Prerequisites 60 61 # Compiled Object files 62 *.slo 63 64 # Precompiled Headers 65 66 # Compiled Dynamic libraries 67 68 # Fortran module files 69 *.mod 70 *.smod 71 72 # Compiled Static libraries 73 *.lai 74 75 # Executables 76 77 ### CMake ### 78 CMakeLists.txt.user 79 CMakeCache.txt 80 CMakeFiles 81 CMakeScripts 82 Testing 83 Makefile 84 cmake_install.cmake 85 install_manifest.txt 86 compile_commands.json 87 CTestTestfile.cmake 88 _deps 89 90 ### CMake Patch ### 91 CMakeUserPresets.json 92 93 # External projects 94 *-prefix/ 95 96 ### Linux ### 97 *~ 98 99 # temporary files which can be created if a process still has a handle open of a deleted file 100 .fuse_hidden* 101 102 # KDE directory preferences 103 .directory 104 105 # Linux trash folder which might appear on any partition or disk 106 .Trash-* 107 108 # .nfs files are created when an open file is removed but is still being accessed 109 .nfs* 110 111 ### OSX ### 112 # General 113 .DS_Store 114 .AppleDouble 115 .LSOverride 116 117 # Icon must end with two \r 118 Icon 119 120 # Thumbnails 121 ._* 122 123 # Files that might appear in the root of a volume 124 .DocumentRevisions-V100 125 .fseventsd 126 .Spotlight-V100 127 .TemporaryItems 128 .Trashes 129 .VolumeIcon.icns 130 .com.apple.timemachine.donotpresent 131 132 # Directories potentially created on remote AFP share 133 .AppleDB 134 .AppleDesktop 135 Network Trash Folder 136 Temporary Items 137 .apdisk 138 139 ### VisualStudioCode ### 140 .vscode/* 141 !.vscode/settings.json 142 !.vscode/tasks.json 143 !.vscode/launch.json 144 !.vscode/extensions.json 145 !.vscode/*.code-snippets 146 147 # Local History for Visual Studio Code 148 .history/ 149 150 # Built Visual Studio Code Extensions 151 *.vsix 152 153 ### VisualStudioCode Patch ### 154 # Ignore all local history of files 155 .history 156 .ionide 157 158 ### Windows ### 159 # Windows thumbnail cache files 160 Thumbs.db 161 Thumbs.db:encryptable 162 ehthumbs.db 163 ehthumbs_vista.db 164 165 # Dump file 166 *.stackdump 167 168 # Folder config file 169 [Dd]esktop.ini 170 171 # Recycle Bin used on file shares 172 $RECYCLE.BIN/ 173 174 # Windows Installer files 175 *.cab 176 *.msi 177 *.msix 178 *.msm 179 *.msp 180 181 # Windows shortcuts 182 *.lnk 183 184 # End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,linux,windows,osx,c,c++,cmake