.gitignore 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # STM32CubeIDE Config
  2. # since we use CLion, we don't need those files
  3. .cproject
  4. .project
  5. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  6. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  7. # User-specific stuff
  8. .idea/**/workspace.xml
  9. .idea/**/tasks.xml
  10. .idea/**/usage.statistics.xml
  11. .idea/**/dictionaries
  12. .idea/**/shelf
  13. # AWS User-specific
  14. .idea/**/aws.xml
  15. # Generated files
  16. .idea/**/contentModel.xml
  17. # Sensitive or high-churn files
  18. .idea/**/dataSources/
  19. .idea/**/dataSources.ids
  20. .idea/**/dataSources.local.xml
  21. .idea/**/sqlDataSources.xml
  22. .idea/**/dynamic.xml
  23. .idea/**/uiDesigner.xml
  24. .idea/**/dbnavigator.xml
  25. # Gradle
  26. .idea/**/gradle.xml
  27. .idea/**/libraries
  28. # Gradle and Maven with auto-import
  29. # When using Gradle or Maven with auto-import, you should exclude module files,
  30. # since they will be recreated, and may cause churn. Uncomment if using
  31. # auto-import.
  32. # .idea/artifacts
  33. # .idea/compiler.xml
  34. # .idea/jarRepositories.xml
  35. # .idea/modules.xml
  36. # .idea/*.iml
  37. # .idea/modules
  38. # *.iml
  39. # *.ipr
  40. # CMake
  41. cmake-build-*/
  42. # Mongo Explorer plugin
  43. .idea/**/mongoSettings.xml
  44. # File-based project format
  45. *.iws
  46. # IntelliJ
  47. out/
  48. # mpeltonen/sbt-idea plugin
  49. .idea_modules/
  50. # JIRA plugin
  51. atlassian-ide-plugin.xml
  52. # Cursive Clojure plugin
  53. .idea/replstate.xml
  54. # SonarLint plugin
  55. .idea/sonarlint/
  56. # Crashlytics plugin (for Android Studio and IntelliJ)
  57. com_crashlytics_export_strings.xml
  58. crashlytics.properties
  59. crashlytics-build.properties
  60. fabric.properties
  61. # Editor-based Rest Client
  62. .idea/httpRequests
  63. # Android studio 3.1+ serialized cache file
  64. .idea/caches/build_file_checksums.ser