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.
 
 

109 lines
2.4 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. # SonarLint plugin
  54. .idea/sonarlint/
  55. # Crashlytics plugin (for Android Studio and IntelliJ)
  56. com_crashlytics_export_strings.xml
  57. crashlytics.properties
  58. crashlytics-build.properties
  59. fabric.properties
  60. # Editor-based Rest Client
  61. .idea/httpRequests
  62. # Android studio 3.1+ serialized cache file
  63. .idea/caches/build_file_checksums.ser
  64. ### Intellij+all Patch ###
  65. # Ignore everything but code style settings and run configurations
  66. # that are supposed to be shared within teams.
  67. .idea/*
  68. !.idea/codeStyles
  69. !.idea/runConfigurations
  70. ### Rust ###
  71. # Generated by Cargo
  72. # will have compiled files and executables
  73. debug/
  74. target/
  75. # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
  76. # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
  77. Cargo.lock
  78. # These are backup files generated by rustfmt
  79. **/*.rs.bk
  80. # MSVC Windows builds of rustc generate these, which store debugging information
  81. *.pdb
  82. # End of https://www.toptal.com/developers/gitignore/api/rust,intellij+all