.gitignore 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  1. logs/
  2. *token*
  3. *.ods
  4. TODO.md
  5. ### IDEs
  6. .idea/
  7. .vscode/
  8. ### C and C++
  9. # Prerequisites
  10. *.d
  11. # Object files
  12. *.o
  13. *.ko
  14. *.obj
  15. *.elf
  16. # Linker output
  17. *.ilk
  18. *.map
  19. *.exp
  20. # Precompiled Headers
  21. *.gch
  22. *.pch
  23. # Libraries
  24. *.lib
  25. *.a
  26. *.la
  27. *.lai
  28. *.lo
  29. *.slo
  30. # Shared objects (inc. Windows DLLs)
  31. *.dll
  32. *.so
  33. *.so.*
  34. *.dylib
  35. # Executables
  36. *.exe
  37. *.out
  38. *.app
  39. *.i*86
  40. *.x86_64
  41. *.hex
  42. # Debug files
  43. *.dSYM/
  44. *.su
  45. *.idb
  46. *.pdb
  47. # Kernel Module Compile Results
  48. *.mod*
  49. *.cmd
  50. .tmp_versions/
  51. modules.order
  52. Module.symvers
  53. Mkfile.old
  54. dkms.conf
  55. # Fortran module files
  56. *.mod
  57. *.smod
  58. ### Java
  59. # Compiled class file
  60. *.class
  61. # Log file
  62. *.log
  63. # BlueJ files
  64. *.ctxt
  65. # Mobile Tools for Java (J2ME)
  66. .mtj.tmp/
  67. # Package Files #
  68. *.jar
  69. *.war
  70. *.nar
  71. *.ear
  72. *.zip
  73. *.tar.gz
  74. *.rar
  75. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  76. hs_err_pid*
  77. replay_pid*
  78. ### Python
  79. # Byte-compiled / optimized / DLL files
  80. __pycache__/
  81. *.py[cod]
  82. *$py.class
  83. # C extensions
  84. *.so
  85. # Distribution / packaging
  86. .Python
  87. build/
  88. develop-eggs/
  89. dist/
  90. downloads/
  91. eggs/
  92. .eggs/
  93. lib/
  94. lib64/
  95. parts/
  96. sdist/
  97. var/
  98. wheels/
  99. share/python-wheels/
  100. *.egg-info/
  101. .installed.cfg
  102. *.egg
  103. MANIFEST
  104. # PyInstaller
  105. # Usually these files are written by a python script from a template
  106. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  107. *.manifest
  108. *.spec
  109. # Installer logs
  110. pip-log.txt
  111. pip-delete-this-directory.txt
  112. # Unit test / coverage reports
  113. htmlcov/
  114. .tox/
  115. .nox/
  116. .coverage
  117. .coverage.*
  118. .cache
  119. nosetests.xml
  120. coverage.xml
  121. *.cover
  122. *.py,cover
  123. .hypothesis/
  124. .pytest_cache/
  125. cover/
  126. # Translations
  127. *.mo
  128. *.pot
  129. # Django stuff:
  130. *.log
  131. local_settings.py
  132. db.sqlite3
  133. db.sqlite3-journal
  134. # Flask stuff:
  135. instance/
  136. .webassets-cache
  137. # Scrapy stuff:
  138. .scrapy
  139. # Sphinx documentation
  140. docs/_build/
  141. # PyBuilder
  142. .pybuilder/
  143. target/
  144. # Jupyter Notebook
  145. .ipynb_checkpoints
  146. # IPython
  147. profile_default/
  148. ipython_config.py
  149. # pyenv
  150. # For a library or package, you might want to ignore these files since the code is
  151. # intended to run in multiple environments; otherwise, check them in:
  152. # .python-version
  153. # pipenv
  154. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  155. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  156. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  157. # install all needed dependencies.
  158. #Pipfile.lock
  159. # poetry
  160. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  161. # This is especially recommended for binary packages to ensure reproducibility, and is more
  162. # commonly ignored for libraries.
  163. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  164. #poetry.lock
  165. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  166. __pypackages__/
  167. # Celery stuff
  168. celerybeat-schedule
  169. celerybeat.pid
  170. # SageMath parsed files
  171. *.sage.py
  172. # Environments
  173. .env
  174. .venv
  175. env/
  176. venv/
  177. ENV/
  178. env.bak/
  179. venv.bak/
  180. # Spyder project settings
  181. .spyderproject
  182. .spyproject
  183. # Rope project settings
  184. .ropeproject
  185. # mkdocs documentation
  186. /site
  187. # mypy
  188. .mypy_cache/
  189. .dmypy.json
  190. dmypy.json
  191. # Pyre type checker
  192. .pyre/
  193. # pytype static type analyzer
  194. .pytype/
  195. # Cython debug symbols
  196. cython_debug/
  197. ### TeX
  198. ## Core latex/pdflatex auxiliary files:
  199. *.aux
  200. *.lof
  201. *.log
  202. *.lot
  203. *.fls
  204. *.out
  205. *.toc
  206. *.fmt
  207. *.fot
  208. *.cb
  209. *.cb2
  210. .*.lb
  211. ## Intermediate documents:
  212. *.dvi
  213. *.xdv
  214. *-converted-to.*
  215. # these rules might exclude image files for figures etc.
  216. # *.ps
  217. # *.eps
  218. # *.pdf
  219. ## Generated if empty string is given at "Please type another file name for output:"
  220. .pdf
  221. ## Bibliography auxiliary files (bibtex/biblatex/biber):
  222. *.bbl
  223. *.bcf
  224. *.blg
  225. *-blx.aux
  226. *-blx.bib
  227. *.run.xml
  228. ## Build tool auxiliary files:
  229. *.fdb_latexmk
  230. *.synctex
  231. *.synctex(busy)
  232. *.synctex.gz
  233. *.synctex.gz(busy)
  234. *.pdfsync
  235. ## Build tool directories for auxiliary files
  236. # latexrun
  237. latex.out/
  238. ## Auxiliary and intermediate files from other packages:
  239. # algorithms
  240. *.alg
  241. *.loa
  242. # achemso
  243. acs-*.bib
  244. # amsthm
  245. *.thm
  246. # beamer
  247. *.nav
  248. *.pre
  249. *.snm
  250. *.vrb
  251. # changes
  252. *.soc
  253. # comment
  254. *.cut
  255. # cprotect
  256. *.cpt
  257. # elsarticle (documentclass of Elsevier journals)
  258. *.spl
  259. # endnotes
  260. *.ent
  261. # fixme
  262. *.lox
  263. # feynmf/feynmp
  264. *.mf
  265. *.mp
  266. *.t[1-9]
  267. *.t[1-9][0-9]
  268. *.tfm
  269. #(r)(e)ledmac/(r)(e)ledpar
  270. *.end
  271. *.?end
  272. *.[1-9]
  273. *.[1-9][0-9]
  274. *.[1-9][0-9][0-9]
  275. *.[1-9]R
  276. *.[1-9][0-9]R
  277. *.[1-9][0-9][0-9]R
  278. *.eledsec[1-9]
  279. *.eledsec[1-9]R
  280. *.eledsec[1-9][0-9]
  281. *.eledsec[1-9][0-9]R
  282. *.eledsec[1-9][0-9][0-9]
  283. *.eledsec[1-9][0-9][0-9]R
  284. # glossaries
  285. *.acn
  286. *.acr
  287. *.glg
  288. *.glo
  289. *.gls
  290. *.glsdefs
  291. *.lzo
  292. *.lzs
  293. *.slg
  294. *.slo
  295. *.sls
  296. # uncomment this for glossaries-extra (will ignore makeindex's style files!)
  297. # *.ist
  298. # gnuplot
  299. *.gnuplot
  300. *.table
  301. # gnuplottex
  302. *-gnuplottex-*
  303. # gregoriotex
  304. *.gaux
  305. *.glog
  306. *.gtex
  307. # htlatex
  308. *.4ct
  309. *.4tc
  310. *.idv
  311. *.lg
  312. *.trc
  313. *.xref
  314. # hyperref
  315. *.brf
  316. # knitr
  317. *-concordance.tex
  318. # TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files
  319. # *.tikz
  320. *-tikzDictionary
  321. # listings
  322. *.lol
  323. # luatexja-ruby
  324. *.ltjruby
  325. # makeidx
  326. *.idx
  327. *.ilg
  328. *.ind
  329. # minitoc
  330. *.maf
  331. *.mlf
  332. *.mlt
  333. *.mtc[0-9]*
  334. *.slf[0-9]*
  335. *.slt[0-9]*
  336. *.stc[0-9]*
  337. # minted
  338. _minted*
  339. *.pyg
  340. # morewrites
  341. *.mw
  342. # newpax
  343. *.newpax
  344. # nomencl
  345. *.nlg
  346. *.nlo
  347. *.nls
  348. # pax
  349. *.pax
  350. # pdfpcnotes
  351. *.pdfpc
  352. # sagetex
  353. *.sagetex.sage
  354. *.sagetex.py
  355. *.sagetex.scmd
  356. # scrwfile
  357. *.wrt
  358. # svg
  359. svg-inkscape/
  360. # sympy
  361. *.sout
  362. *.sympy
  363. sympy-plots-for-*.tex/
  364. # pdfcomment
  365. *.upa
  366. *.upb
  367. # pythontex
  368. *.pytxcode
  369. pythontex-files-*/
  370. # tcolorbox
  371. *.listing
  372. # thmtools
  373. *.loe
  374. # TikZ & PGF
  375. *.dpth
  376. *.md5
  377. *.auxlock
  378. # titletoc
  379. *.ptc
  380. # todonotes
  381. *.tdo
  382. # vhistory
  383. *.hst
  384. *.ver
  385. # easy-todo
  386. *.lod
  387. # xcolor
  388. *.xcp
  389. # xmpincl
  390. *.xmpi
  391. # xindy
  392. *.xdy
  393. # xypic precompiled matrices and outlines
  394. *.xyc
  395. *.xyd
  396. # endfloat
  397. *.ttt
  398. *.fff
  399. # Latexian
  400. TSWLatexianTemp*
  401. ## Editors:
  402. # WinEdt
  403. *.bak
  404. *.sav
  405. # Texpad
  406. .texpadtmp
  407. # LyX
  408. *.lyx~
  409. # Kile
  410. *.backup
  411. # gummi
  412. .*.swp
  413. # KBibTeX
  414. *~[0-9]*
  415. # TeXnicCenter
  416. *.tps
  417. # auto folder when using emacs and auctex
  418. ./auto/*
  419. *.el
  420. # expex forward references with \gathertags
  421. *-tags.tex
  422. # standalone packages
  423. *.sta
  424. # Makeindex log files
  425. *.lpz
  426. # xwatermark package
  427. *.xwm
  428. # REVTeX puts footnotes in the bibliography by default, unless the nofootinbib
  429. # option is specified. Footnotes are the stored in a file with suffix Notes.bib.
  430. # Uncomment the next line to have this generated file ignored.
  431. #*Notes.bib