1
0

.gitignore 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. # Created by https://www.gitignore.io/api/python,osx,windows,linux,pycharm
  2. ### Python ###
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. .idea/
  8. # C extensions
  9. *.so
  10. # Distribution / packaging
  11. .Python
  12. env/
  13. site/
  14. build/
  15. develop-eggs/
  16. dist/
  17. downloads/
  18. eggs/
  19. .eggs/
  20. lib/
  21. lib64/
  22. parts/
  23. sdist/
  24. var/
  25. *.egg-info/
  26. .installed.cfg
  27. *.egg
  28. # PyInstaller
  29. # Usually these files are written by a python script from a template
  30. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  31. *.manifest
  32. *.spec
  33. # Installer logs
  34. pip-log.txt
  35. pip-delete-this-directory.txt
  36. # Unit test / coverage reports
  37. htmlcov/
  38. .tox/
  39. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *,cover
  45. .hypothesis/
  46. # Translations
  47. *.mo
  48. *.pot
  49. # Django stuff:
  50. *.log
  51. local_settings.py
  52. # Flask instance folder
  53. instance/
  54. # Sphinx documentation
  55. docs/_build/
  56. # PyBuilder
  57. target/
  58. # IPython Notebook
  59. .ipynb_checkpoints
  60. # pyenv
  61. .python-version
  62. ### OSX ###
  63. .DS_Store
  64. .AppleDouble
  65. .LSOverride
  66. # Icon must end with two \r
  67. Icon
  68. # Thumbnails
  69. ._*
  70. # Files that might appear in the root of a volume
  71. .DocumentRevisions-V100
  72. .fseventsd
  73. .Spotlight-V100
  74. .TemporaryItems
  75. .Trashes
  76. .VolumeIcon.icns
  77. # Directories potentially created on remote AFP share
  78. .AppleDB
  79. .AppleDesktop
  80. Network Trash Folder
  81. Temporary Items
  82. .apdisk
  83. ### Windows ###
  84. # Windows image file caches
  85. Thumbs.db
  86. ehthumbs.db
  87. # Folder config file
  88. Desktop.ini
  89. # Recycle Bin used on file shares
  90. $RECYCLE.BIN/
  91. # Windows Installer files
  92. *.cab
  93. *.msi
  94. *.msm
  95. *.msp
  96. # Windows shortcuts
  97. *.lnk
  98. ### Linux ###
  99. *~
  100. # temporary files which can be created if a process still has a handle open of a deleted file
  101. .fuse_hidden*
  102. # KDE directory preferences
  103. .directory
  104. # Linux trash folder which might appear on any partition or disk
  105. .Trash-*
  106. ### PyCharm ###
  107. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  108. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  109. # User-specific stuff:
  110. .idea/workspace.xml
  111. .idea/tasks.xml
  112. .idea/dictionaries
  113. .idea/vcs.xml
  114. .idea/jsLibraryMappings.xml
  115. .vscode
  116. # Sensitive or high-churn files:
  117. .idea/dataSources.ids
  118. .idea/dataSources.xml
  119. .idea/sqlDataSources.xml
  120. .idea/dynamic.xml
  121. .idea/uiDesigner.xml
  122. # Gradle:
  123. .idea/gradle.xml
  124. .idea/libraries
  125. # Mongo Explorer plugin:
  126. .idea/mongoSettings.xml
  127. ## File-based project format:
  128. *.iws
  129. ## Plugin-specific files:
  130. # IntelliJ
  131. /out/
  132. # mpeltonen/sbt-idea plugin
  133. .idea_modules/
  134. # JIRA plugin
  135. atlassian-ide-plugin.xml
  136. # Crashlytics plugin (for Android Studio and IntelliJ)
  137. com_crashlytics_export_strings.xml
  138. crashlytics.properties
  139. crashlytics-build.properties
  140. fabric.properties
  141. ### Miscellany ###
  142. .ropeproject
  143. README.html
  144. .idea
  145. HOW_TO_RELEASE.txt
  146. .mypy_cache/