You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. # ---> Rust
  2. # Generated by Cargo
  3. # will have compiled files and executables
  4. debug/
  5. target/
  6. # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
  7. # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
  8. Cargo.lock
  9. # These are backup files generated by rustfmt
  10. **/*.rs.bk
  11. # MSVC Windows builds of rustc generate these, which store debugging information
  12. *.pdb
  13. # Needed to ignore IntelliJ stettings
  14. /.idea
  15. # ---> 🐧
  16. *~
  17. # temporary files which can be created if a process still has a handle open of a deleted file
  18. .fuse_hidden*
  19. # KDE directory preferences
  20. .directory
  21. # Linux trash folder which might appear on any partition or disk
  22. .Trash-*
  23. # .nfs files are created when an open file is removed but is still being accessed
  24. .nfs*
  25. # ---> 🍎
  26. # General
  27. .DS_Store
  28. .AppleDouble
  29. .LSOverride
  30. # Icon must end with two \r
  31. Icon
  32. # Thumbnails
  33. ._*
  34. # Files that might appear in the root of a volume
  35. .DocumentRevisions-V100
  36. .fseventsd
  37. .Spotlight-V100
  38. .TemporaryItems
  39. .Trashes
  40. .VolumeIcon.icns
  41. .com.apple.timemachine.donotpresent
  42. # Directories potentially created on remote AFP share
  43. .AppleDB
  44. .AppleDesktop
  45. Network Trash Folder
  46. Temporary Items
  47. .apdisk
  48. ### JetBrains template
  49. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  50. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  51. # User-specific stuff
  52. .idea/**/workspace.xml
  53. .idea/**/tasks.xml
  54. .idea/**/usage.statistics.xml
  55. .idea/**/dictionaries
  56. .idea/**/shelf
  57. # Generated files
  58. .idea/**/contentModel.xml
  59. # Sensitive or high-churn files
  60. .idea/**/dataSources/
  61. .idea/**/dataSources.ids
  62. .idea/**/dataSources.local.xml
  63. .idea/**/sqlDataSources.xml
  64. .idea/**/dynamic.xml
  65. .idea/**/uiDesigner.xml
  66. .idea/**/dbnavigator.xml
  67. # Gradle
  68. .idea/**/gradle.xml
  69. .idea/**/libraries
  70. # Gradle and Maven with auto-import
  71. # When using Gradle or Maven with auto-import, you should exclude module files,
  72. # since they will be recreated, and may cause churn. Uncomment if using
  73. # auto-import.
  74. # .idea/artifacts
  75. # .idea/compiler.xml
  76. # .idea/jarRepositories.xml
  77. # .idea/modules.xml
  78. # .idea/*.iml
  79. # .idea/modules
  80. # *.iml
  81. # *.ipr
  82. # CMake
  83. cmake-build-*/
  84. # Mongo Explorer plugin
  85. .idea/**/mongoSettings.xml
  86. # File-based project format
  87. *.iws
  88. # IntelliJ
  89. out/
  90. # mpeltonen/sbt-idea plugin
  91. .idea_modules/
  92. # JIRA plugin
  93. atlassian-ide-plugin.xml
  94. # Cursive Clojure plugin
  95. .idea/replstate.xml
  96. # Crashlytics plugin (for Android Studio and IntelliJ)
  97. com_crashlytics_export_strings.xml
  98. crashlytics.properties
  99. crashlytics-build.properties
  100. fabric.properties
  101. # Editor-based Rest Client
  102. .idea/httpRequests
  103. # Android studio 3.1+ serialized cache file
  104. .idea/caches/build_file_checksums.ser
  105. .vscode/launch.json