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.

114 lines
2.5 KiB

  1. # Created by https://www.toptal.com/developers/gitignore/api/rust,intellij+all
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=rust,intellij+all
  3. ### Intellij+all ###
  4. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  5. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  6. # User-specific stuff
  7. .idea/**/workspace.xml
  8. .idea/**/tasks.xml
  9. .idea/**/usage.statistics.xml
  10. .idea/**/dictionaries
  11. .idea/**/shelf
  12. # AWS User-specific
  13. .idea/**/aws.xml
  14. # Generated files
  15. .idea/**/contentModel.xml
  16. # Sensitive or high-churn files
  17. .idea/**/dataSources/
  18. .idea/**/dataSources.ids
  19. .idea/**/dataSources.local.xml
  20. .idea/**/sqlDataSources.xml
  21. .idea/**/dynamic.xml
  22. .idea/**/uiDesigner.xml
  23. .idea/**/dbnavigator.xml
  24. # Gradle
  25. .idea/**/gradle.xml
  26. .idea/**/libraries
  27. # Gradle and Maven with auto-import
  28. # When using Gradle or Maven with auto-import, you should exclude module files,
  29. # since they will be recreated, and may cause churn. Uncomment if using
  30. # auto-import.
  31. # .idea/artifacts
  32. # .idea/compiler.xml
  33. # .idea/jarRepositories.xml
  34. # .idea/modules.xml
  35. # .idea/*.iml
  36. # .idea/modules
  37. # *.iml
  38. # *.ipr
  39. # CMake
  40. cmake-build-*/
  41. # Mongo Explorer plugin
  42. .idea/**/mongoSettings.xml
  43. # File-based project format
  44. *.iws
  45. # IntelliJ
  46. out/
  47. # mpeltonen/sbt-idea plugin
  48. .idea_modules/
  49. # JIRA plugin
  50. atlassian-ide-plugin.xml
  51. # Cursive Clojure plugin
  52. .idea/replstate.xml
  53. # Crashlytics plugin (for Android Studio and IntelliJ)
  54. com_crashlytics_export_strings.xml
  55. crashlytics.properties
  56. crashlytics-build.properties
  57. fabric.properties
  58. # Editor-based Rest Client
  59. .idea/httpRequests
  60. # Android studio 3.1+ serialized cache file
  61. .idea/caches/build_file_checksums.ser
  62. ### Intellij+all Patch ###
  63. # Ignores the whole .idea folder and all .iml files
  64. # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
  65. .idea/
  66. # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
  67. *.iml
  68. modules.xml
  69. .idea/misc.xml
  70. *.ipr
  71. # Sonarlint plugin
  72. .idea/sonarlint
  73. ### Rust ###
  74. # Generated by Cargo
  75. # will have compiled files and executables
  76. debug/
  77. target/
  78. # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
  79. # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
  80. Cargo.lock
  81. # These are backup files generated by rustfmt
  82. **/*.rs.bk
  83. # MSVC Windows builds of rustc generate these, which store debugging information
  84. *.pdb
  85. # End of https://www.toptal.com/developers/gitignore/api/rust,intellij+all