.gitignore 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. # Created by https://www.gitignore.io/api/c,c++,cuda,linux,macos,windows
  2. ### C ###
  3. # Prerequisites
  4. *.d
  5. # Object files
  6. *.o
  7. *.ko
  8. *.obj
  9. *.elf
  10. # Linker output
  11. *.ilk
  12. *.map
  13. *.exp
  14. # Precompiled Headers
  15. *.gch
  16. *.pch
  17. # Libraries
  18. *.lib
  19. *.a
  20. *.la
  21. *.lo
  22. # Shared objects (inc. Windows DLLs)
  23. *.dll
  24. *.so
  25. *.so.*
  26. *.dylib
  27. # Executables
  28. *.exe
  29. *.out
  30. *.app
  31. *.i*86
  32. *.x86_64
  33. *.hex
  34. # Debug files
  35. *.dSYM/
  36. *.su
  37. *.idb
  38. *.pdb
  39. # Kernel Module Compile Results
  40. *.mod*
  41. *.cmd
  42. .tmp_versions/
  43. modules.order
  44. Module.symvers
  45. Mkfile.old
  46. dkms.conf
  47. ### C++ ###
  48. # Prerequisites
  49. # Compiled Object files
  50. *.slo
  51. # Precompiled Headers
  52. # Compiled Dynamic libraries
  53. # Fortran module files
  54. *.mod
  55. *.smod
  56. # Compiled Static libraries
  57. *.lai
  58. # Executables
  59. ### CUDA ###
  60. *.i
  61. *.ii
  62. *.gpu
  63. *.ptx
  64. *.cubin
  65. *.fatbin
  66. ### Linux ###
  67. *~
  68. # temporary files which can be created if a process still has a handle open of a deleted file
  69. .fuse_hidden*
  70. # KDE directory preferences
  71. .directory
  72. # Linux trash folder which might appear on any partition or disk
  73. .Trash-*
  74. # .nfs files are created when an open file is removed but is still being accessed
  75. .nfs*
  76. ### macOS ###
  77. # General
  78. .DS_Store
  79. .AppleDouble
  80. .LSOverride
  81. # Icon must end with two \r
  82. Icon
  83. # Thumbnails
  84. ._*
  85. # Files that might appear in the root of a volume
  86. .DocumentRevisions-V100
  87. .fseventsd
  88. .Spotlight-V100
  89. .TemporaryItems
  90. .Trashes
  91. .VolumeIcon.icns
  92. .com.apple.timemachine.donotpresent
  93. # Directories potentially created on remote AFP share
  94. .AppleDB
  95. .AppleDesktop
  96. Network Trash Folder
  97. Temporary Items
  98. .apdisk
  99. ### Windows ###
  100. # Windows thumbnail cache files
  101. Thumbs.db
  102. ehthumbs.db
  103. ehthumbs_vista.db
  104. # Dump file
  105. *.stackdump
  106. # Folder config file
  107. [Dd]esktop.ini
  108. # Recycle Bin used on file shares
  109. $RECYCLE.BIN/
  110. # Windows Installer files
  111. *.cab
  112. *.msi
  113. *.msix
  114. *.msm
  115. *.msp
  116. # Windows shortcuts
  117. *.lnk
  118. .vscode
  119. # Byte-compiled / optimized / DLL files
  120. __pycache__/
  121. *.py[cod]
  122. *$py.class
  123. # C extensions
  124. *.so
  125. # Distribution / packaging
  126. .Python
  127. build/
  128. develop-eggs/
  129. dist/
  130. downloads/
  131. eggs/
  132. .eggs/
  133. lib/
  134. lib64/
  135. parts/
  136. sdist/
  137. var/
  138. wheels/
  139. *.egg-info/
  140. .installed.cfg
  141. *.egg
  142. # PyInstaller
  143. # Usually these files are written by a python script from a template
  144. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  145. *.manifest
  146. *.spec
  147. # Installer logs
  148. pip-log.txt
  149. pip-delete-this-directory.txt
  150. # Unit test / coverage reports
  151. htmlcov/
  152. .tox/
  153. .coverage
  154. .coverage.*
  155. .cache
  156. nosetests.xml
  157. coverage.xml
  158. *.cover
  159. .hypothesis/
  160. # Translations
  161. *.mo
  162. *.pot
  163. # Django stuff:
  164. *.log
  165. local_settings.py
  166. # Flask stuff:
  167. instance/
  168. .webassets-cache
  169. # Scrapy stuff:
  170. .scrapy
  171. # Sphinx documentation
  172. docs/_build/
  173. # PyBuilder
  174. target/
  175. # Jupyter Notebook
  176. .ipynb_checkpoints
  177. # pyenv
  178. .python-version
  179. # celery beat schedule file
  180. celerybeat-schedule
  181. # SageMath parsed files
  182. *.sage.py
  183. # Environments
  184. .env
  185. .venv
  186. env/
  187. venv/
  188. ENV/
  189. # Spyder project settings
  190. .spyderproject
  191. .spyproject
  192. # Rope project settings
  193. .ropeproject
  194. # mkdocs documentation
  195. /site
  196. # mypy
  197. .mypy_cache/
  198. # pytest
  199. .pytest_cache
  200. # End of https://www.gitignore.io/api/c,c++,cuda,linux,macos,windows