.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. # ---> macOS
  52. .DS_Store
  53. .AppleDouble
  54. .LSOverride
  55. # Icon must end with two \r
  56. Icon
  57. # Thumbnails
  58. ._*
  59. # Files that might appear in the root of a volume
  60. .DocumentRevisions-V100
  61. .fseventsd
  62. .Spotlight-V100
  63. .TemporaryItems
  64. .Trashes
  65. .VolumeIcon.icns
  66. # Directories potentially created on remote AFP share
  67. .AppleDB
  68. .AppleDesktop
  69. Network Trash Folder
  70. Temporary Items
  71. .apdisk
  72. # ---> VisualStudioCode
  73. .settings
  74. # ---> Linux
  75. *~
  76. # KDE directory preferences
  77. .directory
  78. # Linux trash folder which might appear on any partition or disk
  79. .Trash-*
  80. # ---> JetBrains
  81. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  82. *.iml
  83. ## Directory-based project format:
  84. .idea/
  85. # if you remove the above rule, at least ignore the following:
  86. # User-specific stuff:
  87. # .idea/workspace.xml
  88. # .idea/tasks.xml
  89. # .idea/dictionaries
  90. # Sensitive or high-churn files:
  91. # .idea/dataSources.ids
  92. # .idea/dataSources.xml
  93. # .idea/sqlDataSources.xml
  94. # .idea/dynamic.xml
  95. # .idea/uiDesigner.xml
  96. # Gradle:
  97. # .idea/gradle.xml
  98. # .idea/libraries
  99. # Mongo Explorer plugin:
  100. # .idea/mongoSettings.xml
  101. ## File-based project format:
  102. *.ipr
  103. *.iws
  104. ## Plugin-specific files:
  105. # IntelliJ
  106. /out/
  107. # mpeltonen/sbt-idea plugin
  108. .idea_modules/
  109. # JIRA plugin
  110. atlassian-ide-plugin.xml
  111. # Crashlytics plugin (for Android Studio and IntelliJ)
  112. com_crashlytics_export_strings.xml
  113. crashlytics.properties
  114. crashlytics-build.properties