.gitignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. # ---> PhpStorm
  52. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  53. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  54. # User-specific stuff:
  55. .idea/**/workspace.xml
  56. .idea/**/tasks.xml
  57. .idea/dictionaries
  58. # Sensitive or high-churn files:
  59. .idea/**/dataSources/
  60. .idea/**/dataSources.ids
  61. .idea/**/dataSources.xml
  62. .idea/**/dataSources.local.xml
  63. .idea/**/sqlDataSources.xml
  64. .idea/**/dynamic.xml
  65. .idea/**/uiDesigner.xml
  66. # Gradle:
  67. .idea/**/gradle.xml
  68. .idea/**/libraries
  69. # CMake
  70. cmake-build-debug/
  71. # Mongo Explorer plugin:
  72. .idea/**/mongoSettings.xml
  73. ## File-based project format:
  74. *.iws
  75. ## Plugin-specific files:
  76. # IntelliJ
  77. /out/
  78. # mpeltonen/sbt-idea plugin
  79. .idea_modules/
  80. # JIRA plugin
  81. atlassian-ide-plugin.xml
  82. # Cursive Clojure plugin
  83. .idea/replstate.xml
  84. # Ruby plugin and RubyMine
  85. /.rakeTasks
  86. # Crashlytics plugin (for Android Studio and IntelliJ)
  87. com_crashlytics_export_strings.xml
  88. crashlytics.properties
  89. crashlytics-build.properties
  90. fabric.properties
  91. ### PhpStorm Patch ###
  92. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  93. # *.iml
  94. # modules.xml
  95. # .idea/misc.xml
  96. # *.ipr
  97. # Sonarlint plugin
  98. .idea/sonarlint