.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. venv/
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .coverage
  38. .coverage.*
  39. .cache
  40. nosetests.xml
  41. coverage.xml
  42. *,cover
  43. # Translations
  44. *.mo
  45. *.pot
  46. # Django stuff:
  47. *.log
  48. # Sphinx documentation
  49. docs/_build/
  50. # PyBuilder
  51. target/
  52. # ---> macOS
  53. .DS_Store
  54. .AppleDouble
  55. .LSOverride
  56. # Icon must end with two \r
  57. Icon
  58. # Thumbnails
  59. ._*
  60. # Files that might appear in the root of a volume
  61. .DocumentRevisions-V100
  62. .fseventsd
  63. .Spotlight-V100
  64. .TemporaryItems
  65. .Trashes
  66. .VolumeIcon.icns
  67. # Directories potentially created on remote AFP share
  68. .AppleDB
  69. .AppleDesktop
  70. Network Trash Folder
  71. Temporary Items
  72. .apdisk
  73. # ---> VisualStudioCode
  74. .settings
  75. .vscode/settings.json
  76. # ---> Linux
  77. *~
  78. # KDE directory preferences
  79. .directory
  80. # Linux trash folder which might appear on any partition or disk
  81. .Trash-*
  82. # ---> JetBrains
  83. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  84. *.iml
  85. ## Directory-based project format:
  86. .idea/
  87. # if you remove the above rule, at least ignore the following:
  88. # User-specific stuff:
  89. # .idea/workspace.xml
  90. # .idea/tasks.xml
  91. # .idea/dictionaries
  92. # Sensitive or high-churn files:
  93. # .idea/dataSources.ids
  94. # .idea/dataSources.xml
  95. # .idea/sqlDataSources.xml
  96. # .idea/dynamic.xml
  97. # .idea/uiDesigner.xml
  98. # Gradle:
  99. # .idea/gradle.xml
  100. # .idea/libraries
  101. # Mongo Explorer plugin:
  102. # .idea/mongoSettings.xml
  103. ## File-based project format:
  104. *.ipr
  105. *.iws
  106. ## Plugin-specific files:
  107. # IntelliJ
  108. /out/
  109. # mpeltonen/sbt-idea plugin
  110. .idea_modules/
  111. # JIRA plugin
  112. atlassian-ide-plugin.xml
  113. # Crashlytics plugin (for Android Studio and IntelliJ)
  114. com_crashlytics_export_strings.xml
  115. crashlytics.properties
  116. crashlytics-build.properties