.gitignore 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. env/
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. # PyInstaller
  26. # Usually these files are written by a python script from a template
  27. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  28. *.manifest
  29. *.spec
  30. # Installer logs
  31. pip-log.txt
  32. pip-delete-this-directory.txt
  33. # Unit test / coverage reports
  34. htmlcov/
  35. .tox/
  36. .coverage
  37. .coverage.*
  38. .cache
  39. nosetests.xml
  40. coverage.xml
  41. *,cover
  42. # Translations
  43. *.mo
  44. *.pot
  45. # Django stuff:
  46. *.log
  47. # Sphinx documentation
  48. docs/_build/
  49. # PyBuilder
  50. target/
  51. # ---> PhpStorm
  52. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  53. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  54. # User-specific stuff:
  55. .idea/**/workspace.xml
  56. .idea/**/tasks.xml
  57. .idea/dictionaries
  58. # Sensitive or high-churn files:
  59. .idea/**/dataSources/
  60. .idea/**/dataSources.ids
  61. .idea/**/dataSources.xml
  62. .idea/**/dataSources.local.xml
  63. .idea/**/sqlDataSources.xml
  64. .idea/**/dynamic.xml
  65. .idea/**/uiDesigner.xml
  66. # Gradle:
  67. .idea/**/gradle.xml
  68. .idea/**/libraries
  69. # CMake
  70. cmake-build-debug/
  71. # Mongo Explorer plugin:
  72. .idea/**/mongoSettings.xml
  73. ## File-based project format:
  74. *.iws
  75. ## Plugin-specific files:
  76. # IntelliJ
  77. /out/
  78. # mpeltonen/sbt-idea plugin
  79. .idea_modules/
  80. # JIRA plugin
  81. atlassian-ide-plugin.xml
  82. # Cursive Clojure plugin
  83. .idea/replstate.xml
  84. # Ruby plugin and RubyMine
  85. /.rakeTasks
  86. # Crashlytics plugin (for Android Studio and IntelliJ)
  87. com_crashlytics_export_strings.xml
  88. crashlytics.properties
  89. crashlytics-build.properties
  90. fabric.properties
  91. ### PhpStorm Patch ###
  92. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  93. # *.iml
  94. # modules.xml
  95. # .idea/misc.xml
  96. # *.ipr
  97. # Sonarlint plugin
  98. .idea/sonarlint
  99. # ---> VisualStudio
  100. ## Ignore Visual Studio temporary files, build results, and
  101. ## files generated by popular Visual Studio add-ons.
  102. # User-specific files
  103. *.suo
  104. *.user
  105. *.userosscache
  106. *.sln.docstates
  107. # User-specific files (MonoDevelop/Xamarin Studio)
  108. *.userprefs
  109. # Build results
  110. [Dd]ebug/
  111. [Dd]ebugPublic/
  112. [Rr]elease/
  113. [Rr]eleases/
  114. x64/
  115. x86/
  116. build/
  117. bld/
  118. [Bb]in/
  119. [Oo]bj/
  120. # Visual Studio 2015 cache/options directory
  121. .vs/
  122. # Uncomment if you have tasks that create the project's static files in wwwroot
  123. #wwwroot/
  124. # MSTest test Results
  125. [Tt]est[Rr]esult*/
  126. [Bb]uild[Ll]og.*
  127. # NUNIT
  128. *.VisualState.xml
  129. TestResult.xml
  130. # Build Results of an ATL Project
  131. [Dd]ebugPS/
  132. [Rr]eleasePS/
  133. dlldata.c
  134. # DNX
  135. project.lock.json
  136. artifacts/
  137. *_i.c
  138. *_p.c
  139. *_i.h
  140. *.ilk
  141. *.meta
  142. *.obj
  143. *.pch
  144. *.pdb
  145. *.pgc
  146. *.pgd
  147. *.rsp
  148. *.sbr
  149. *.tlb
  150. *.tli
  151. *.tlh
  152. *.tmp
  153. *.tmp_proj
  154. *.log
  155. *.vspscc
  156. *.vssscc
  157. .builds
  158. *.pidb
  159. *.svclog
  160. *.scc
  161. # Chutzpah Test files
  162. _Chutzpah*
  163. # Visual C++ cache files
  164. ipch/
  165. *.aps
  166. *.ncb
  167. *.opensdf
  168. *.sdf
  169. *.cachefile
  170. # Visual Studio profiler
  171. *.psess
  172. *.vsp
  173. *.vspx
  174. *.sap
  175. # TFS 2012 Local Workspace
  176. $tf/
  177. # Guidance Automation Toolkit
  178. *.gpState
  179. # ReSharper is a .NET coding add-in
  180. _ReSharper*/
  181. *.[Rr]e[Ss]harper
  182. *.DotSettings.user
  183. # JustCode is a .NET coding add-in
  184. .JustCode
  185. # TeamCity is a build add-in
  186. _TeamCity*
  187. # DotCover is a Code Coverage Tool
  188. *.dotCover
  189. # NCrunch
  190. _NCrunch_*
  191. .*crunch*.local.xml
  192. nCrunchTemp_*
  193. # MightyMoose
  194. *.mm.*
  195. AutoTest.Net/
  196. # Web workbench (sass)
  197. .sass-cache/
  198. # Installshield output folder
  199. [Ee]xpress/
  200. # DocProject is a documentation generator add-in
  201. DocProject/buildhelp/
  202. DocProject/Help/*.HxT
  203. DocProject/Help/*.HxC
  204. DocProject/Help/*.hhc
  205. DocProject/Help/*.hhk
  206. DocProject/Help/*.hhp
  207. DocProject/Help/Html2
  208. DocProject/Help/html
  209. # Click-Once directory
  210. publish/
  211. # Publish Web Output
  212. *.[Pp]ublish.xml
  213. *.azurePubxml
  214. # TODO: Comment the next line if you want to checkin your web deploy settings
  215. # but database connection strings (with potential passwords) will be unencrypted
  216. *.pubxml
  217. *.publishproj
  218. # NuGet Packages
  219. *.nupkg
  220. # The packages folder can be ignored because of Package Restore
  221. **/packages/*
  222. # except build/, which is used as an MSBuild target.
  223. !**/packages/build/
  224. # Uncomment if necessary however generally it will be regenerated when needed
  225. #!**/packages/repositories.config
  226. # Windows Azure Build Output
  227. csx/
  228. *.build.csdef
  229. # Windows Store app package directory
  230. AppPackages/
  231. # Visual Studio cache files
  232. # files ending in .cache can be ignored
  233. *.[Cc]ache
  234. # but keep track of directories ending in .cache
  235. !*.[Cc]ache/
  236. # Others
  237. ClientBin/
  238. [Ss]tyle[Cc]op.*
  239. ~$*
  240. *~
  241. *.dbmdl
  242. *.dbproj.schemaview
  243. *.pfx
  244. *.publishsettings
  245. node_modules/
  246. orleans.codegen.cs
  247. # RIA/Silverlight projects
  248. Generated_Code/
  249. # Backup & report files from converting an old project file
  250. # to a newer Visual Studio version. Backup files are not needed,
  251. # because we have git ;-)
  252. _UpgradeReport_Files/
  253. Backup*/
  254. UpgradeLog*.XML
  255. UpgradeLog*.htm
  256. # SQL Server files
  257. *.mdf
  258. *.ldf
  259. # Business Intelligence projects
  260. *.rdl.data
  261. *.bim.layout
  262. *.bim_*.settings
  263. # Microsoft Fakes
  264. FakesAssemblies/
  265. # Node.js Tools for Visual Studio
  266. .ntvs_analysis.dat
  267. # Visual Studio 6 build log
  268. *.plg
  269. # Visual Studio 6 workspace options file
  270. *.opt
  271. # Visual Studio LightSwitch build output
  272. **/*.HTMLClient/GeneratedArtifacts
  273. **/*.DesktopClient/GeneratedArtifacts
  274. **/*.DesktopClient/ModelManifest.xml
  275. **/*.Server/GeneratedArtifacts
  276. **/*.Server/ModelManifest.xml
  277. _Pvt_Extensions
  278. # ---> VisualStudioCode
  279. .settings