.gitignore 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. pip-wheel-metadata/
  22. share/python-wheels/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. MANIFEST
  27. # PyInstaller
  28. # Usually these files are written by a python script from a template
  29. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  30. *.manifest
  31. *.spec
  32. # Installer logs
  33. pip-log.txt
  34. pip-delete-this-directory.txt
  35. # Unit test / coverage reports
  36. htmlcov/
  37. .tox/
  38. .nox/
  39. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *.cover
  45. *.py,cover
  46. .hypothesis/
  47. .pytest_cache/
  48. # Translations
  49. *.mo
  50. *.pot
  51. # Django stuff:
  52. *.log
  53. local_settings.py
  54. db.sqlite3
  55. db.sqlite3-journal
  56. # Flask stuff:
  57. instance/
  58. .webassets-cache
  59. # Scrapy stuff:
  60. .scrapy
  61. # Sphinx documentation
  62. docs/_build/
  63. # PyBuilder
  64. target/
  65. # Jupyter Notebook
  66. .ipynb_checkpoints
  67. # IPython
  68. profile_default/
  69. ipython_config.py
  70. # pyenv
  71. .python-version
  72. # pipenv
  73. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  74. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  75. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  76. # install all needed dependencies.
  77. #Pipfile.lock
  78. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  79. __pypackages__/
  80. # Celery stuff
  81. celerybeat-schedule
  82. celerybeat.pid
  83. # SageMath parsed files
  84. *.sage.py
  85. # Environments
  86. .env
  87. .venv
  88. env/
  89. venv/
  90. ENV/
  91. env.bak/
  92. venv.bak/
  93. # Spyder project settings
  94. .spyderproject
  95. .spyproject
  96. # Rope project settings
  97. .ropeproject
  98. # mkdocs documentation
  99. /site
  100. # mypy
  101. .mypy_cache/
  102. .dmypy.json
  103. dmypy.json
  104. # Pyre type checker
  105. .pyre/
  106. ## Ignore Visual Studio temporary files, build results, and
  107. ## files generated by popular Visual Studio add-ons.
  108. ##
  109. ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
  110. # User-specific files
  111. *.rsuser
  112. *.suo
  113. *.user
  114. *.userosscache
  115. *.sln.docstates
  116. # User-specific files (MonoDevelop/Xamarin Studio)
  117. *.userprefs
  118. # Mono auto generated files
  119. mono_crash.*
  120. # Build results
  121. [Dd]ebug/
  122. [Dd]ebugPublic/
  123. [Rr]elease/
  124. [Rr]eleases/
  125. x64/
  126. x86/
  127. [Ww][Ii][Nn]32/
  128. [Aa][Rr][Mm]/
  129. [Aa][Rr][Mm]64/
  130. bld/
  131. [Bb]in/
  132. [Oo]bj/
  133. [Ll]og/
  134. [Ll]ogs/
  135. # Visual Studio 2015/2017 cache/options directory
  136. .vs/
  137. # Uncomment if you have tasks that create the project's static files in wwwroot
  138. #wwwroot/
  139. # Visual Studio 2017 auto generated files
  140. Generated\ Files/
  141. # MSTest test Results
  142. [Tt]est[Rr]esult*/
  143. [Bb]uild[Ll]og.*
  144. # NUnit
  145. *.VisualState.xml
  146. TestResult.xml
  147. nunit-*.xml
  148. # Build Results of an ATL Project
  149. [Dd]ebugPS/
  150. [Rr]eleasePS/
  151. dlldata.c
  152. # Benchmark Results
  153. BenchmarkDotNet.Artifacts/
  154. # .NET Core
  155. project.lock.json
  156. project.fragment.lock.json
  157. artifacts/
  158. # ASP.NET Scaffolding
  159. ScaffoldingReadMe.txt
  160. # StyleCop
  161. StyleCopReport.xml
  162. # Files built by Visual Studio
  163. *_i.c
  164. *_p.c
  165. *_h.h
  166. *.ilk
  167. *.meta
  168. *.obj
  169. *.iobj
  170. *.pch
  171. *.pdb
  172. *.ipdb
  173. *.pgc
  174. *.pgd
  175. *.rsp
  176. *.sbr
  177. *.tlb
  178. *.tli
  179. *.tlh
  180. *.tmp
  181. *.tmp_proj
  182. *_wpftmp.csproj
  183. *.log
  184. *.tlog
  185. *.vspscc
  186. *.vssscc
  187. .builds
  188. *.pidb
  189. *.svclog
  190. *.scc
  191. # Chutzpah Test files
  192. _Chutzpah*
  193. # Visual C++ cache files
  194. ipch/
  195. *.aps
  196. *.ncb
  197. *.opendb
  198. *.opensdf
  199. *.sdf
  200. *.cachefile
  201. *.VC.db
  202. *.VC.VC.opendb
  203. # Visual Studio profiler
  204. *.psess
  205. *.vsp
  206. *.vspx
  207. *.sap
  208. # Visual Studio Trace Files
  209. *.e2e
  210. # TFS 2012 Local Workspace
  211. $tf/
  212. # Guidance Automation Toolkit
  213. *.gpState
  214. # ReSharper is a .NET coding add-in
  215. _ReSharper*/
  216. *.[Rr]e[Ss]harper
  217. *.DotSettings.user
  218. # TeamCity is a build add-in
  219. _TeamCity*
  220. # DotCover is a Code Coverage Tool
  221. *.dotCover
  222. # AxoCover is a Code Coverage Tool
  223. .axoCover/*
  224. !.axoCover/settings.json
  225. # Coverlet is a free, cross platform Code Coverage Tool
  226. coverage*.json
  227. coverage*.xml
  228. coverage*.info
  229. # Visual Studio code coverage results
  230. *.coverage
  231. *.coveragexml
  232. # NCrunch
  233. _NCrunch_*
  234. .*crunch*.local.xml
  235. nCrunchTemp_*
  236. # MightyMoose
  237. *.mm.*
  238. AutoTest.Net/
  239. # Web workbench (sass)
  240. .sass-cache/
  241. # Installshield output folder
  242. [Ee]xpress/
  243. # DocProject is a documentation generator add-in
  244. DocProject/buildhelp/
  245. DocProject/Help/*.HxT
  246. DocProject/Help/*.HxC
  247. DocProject/Help/*.hhc
  248. DocProject/Help/*.hhk
  249. DocProject/Help/*.hhp
  250. DocProject/Help/Html2
  251. DocProject/Help/html
  252. # Click-Once directory
  253. publish/
  254. # Publish Web Output
  255. *.[Pp]ublish.xml
  256. *.azurePubxml
  257. # Note: Comment the next line if you want to checkin your web deploy settings,
  258. # but database connection strings (with potential passwords) will be unencrypted
  259. *.pubxml
  260. *.publishproj
  261. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  262. # checkin your Azure Web App publish settings, but sensitive information contained
  263. # in these scripts will be unencrypted
  264. PublishScripts/
  265. # NuGet Packages
  266. *.nupkg
  267. # NuGet Symbol Packages
  268. *.snupkg
  269. # The packages folder can be ignored because of Package Restore
  270. **/[Pp]ackages/*
  271. # except build/, which is used as an MSBuild target.
  272. !**/[Pp]ackages/build/
  273. # Uncomment if necessary however generally it will be regenerated when needed
  274. #!**/[Pp]ackages/repositories.config
  275. # NuGet v3's project.json files produces more ignorable files
  276. *.nuget.props
  277. *.nuget.targets
  278. # Microsoft Azure Build Output
  279. csx/
  280. *.build.csdef
  281. # Microsoft Azure Emulator
  282. ecf/
  283. rcf/
  284. # Windows Store app package directories and files
  285. AppPackages/
  286. BundleArtifacts/
  287. Package.StoreAssociation.xml
  288. _pkginfo.txt
  289. *.appx
  290. *.appxbundle
  291. *.appxupload
  292. # Visual Studio cache files
  293. # files ending in .cache can be ignored
  294. *.[Cc]ache
  295. # but keep track of directories ending in .cache
  296. !?*.[Cc]ache/
  297. # Others
  298. ClientBin/
  299. ~$*
  300. *~
  301. *.dbmdl
  302. *.dbproj.schemaview
  303. *.jfm
  304. *.pfx
  305. *.publishsettings
  306. orleans.codegen.cs
  307. # Including strong name files can present a security risk
  308. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  309. #*.snk
  310. # Since there are multiple workflows, uncomment next line to ignore bower_components
  311. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  312. #bower_components/
  313. # RIA/Silverlight projects
  314. Generated_Code/
  315. # Backup & report files from converting an old project file
  316. # to a newer Visual Studio version. Backup files are not needed,
  317. # because we have git ;-)
  318. _UpgradeReport_Files/
  319. Backup*/
  320. UpgradeLog*.XML
  321. UpgradeLog*.htm
  322. ServiceFabricBackup/
  323. *.rptproj.bak
  324. # SQL Server files
  325. *.mdf
  326. *.ldf
  327. *.ndf
  328. # Business Intelligence projects
  329. *.rdl.data
  330. *.bim.layout
  331. *.bim_*.settings
  332. *.rptproj.rsuser
  333. *- [Bb]ackup.rdl
  334. *- [Bb]ackup ([0-9]).rdl
  335. *- [Bb]ackup ([0-9][0-9]).rdl
  336. # Microsoft Fakes
  337. FakesAssemblies/
  338. # GhostDoc plugin setting file
  339. *.GhostDoc.xml
  340. # Node.js Tools for Visual Studio
  341. .ntvs_analysis.dat
  342. node_modules/
  343. # Visual Studio 6 build log
  344. *.plg
  345. # Visual Studio 6 workspace options file
  346. *.opt
  347. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  348. *.vbw
  349. # Visual Studio 6 auto-generated project file (contains which files were open etc.)
  350. *.vbp
  351. # Visual Studio 6 workspace and project file (working project files containing files to include in project)
  352. *.dsw
  353. *.dsp
  354. # Visual Studio 6 technical files
  355. *.ncb
  356. *.aps
  357. # Visual Studio LightSwitch build output
  358. **/*.HTMLClient/GeneratedArtifacts
  359. **/*.DesktopClient/GeneratedArtifacts
  360. **/*.DesktopClient/ModelManifest.xml
  361. **/*.Server/GeneratedArtifacts
  362. **/*.Server/ModelManifest.xml
  363. _Pvt_Extensions
  364. # Paket dependency manager
  365. .paket/paket.exe
  366. paket-files/
  367. # FAKE - F# Make
  368. .fake/
  369. # CodeRush personal settings
  370. .cr/personal
  371. # Python Tools for Visual Studio (PTVS)
  372. __pycache__/
  373. *.pyc
  374. # Cake - Uncomment if you are using it
  375. # tools/**
  376. # !tools/packages.config
  377. # Tabs Studio
  378. *.tss
  379. # Telerik's JustMock configuration file
  380. *.jmconfig
  381. # BizTalk build output
  382. *.btp.cs
  383. *.btm.cs
  384. *.odx.cs
  385. *.xsd.cs
  386. # OpenCover UI analysis results
  387. OpenCover/
  388. # Azure Stream Analytics local run output
  389. ASALocalRun/
  390. # MSBuild Binary and Structured Log
  391. *.binlog
  392. # NVidia Nsight GPU debugger configuration file
  393. *.nvuser
  394. # MFractors (Xamarin productivity tool) working folder
  395. .mfractor/
  396. # Local History for Visual Studio
  397. .localhistory/
  398. # Visual Studio History (VSHistory) files
  399. .vshistory/
  400. # BeatPulse healthcheck temp database
  401. healthchecksdb
  402. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  403. MigrationBackup/
  404. # Ionide (cross platform F# VS Code tools) working folder
  405. .ionide/
  406. # Fody - auto-generated XML schema
  407. FodyWeavers.xsd
  408. # VS Code files for those working on multiple tools
  409. .vscode/*
  410. !.vscode/settings.json
  411. !.vscode/tasks.json
  412. !.vscode/launch.json
  413. !.vscode/extensions.json
  414. *.code-workspace
  415. # Local History for Visual Studio Code
  416. .history/
  417. # Windows Installer files from build outputs
  418. *.cab
  419. *.msi
  420. *.msix
  421. *.msm
  422. *.msp
  423. # JetBrains Rider
  424. *.sln.iml