.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. .config
  2. *.o
  3. *.pyc
  4. # gtags
  5. GTAGS
  6. GRTAGS
  7. GPATH
  8. # emacs
  9. .dir-locals.el
  10. # emacs temp file suffixes
  11. *~
  12. .#*
  13. \#*#
  14. # eclipse setting
  15. .settings
  16. # MacOS directory files
  17. .DS_Store
  18. # cache dir
  19. .cache/
  20. # Components Unit Test Apps files
  21. components/**/build/
  22. components/**/build_*_*/
  23. components/**/sdkconfig
  24. components/**/sdkconfig.old
  25. # Example project files
  26. examples/**/build/
  27. examples/**/build_esp*_*/
  28. examples/**/sdkconfig
  29. examples/**/sdkconfig.old
  30. # Doc build artifacts
  31. docs/_build/
  32. docs/doxygen_sqlite3.db
  33. # Downloaded font files
  34. docs/_static/DejaVuSans.ttf
  35. docs/_static/NotoSansSC-Regular.otf
  36. # Unit test app files
  37. tools/unit-test-app/sdkconfig
  38. tools/unit-test-app/sdkconfig.old
  39. tools/unit-test-app/build
  40. tools/unit-test-app/build_*_*/
  41. tools/unit-test-app/output
  42. tools/unit-test-app/test_configs
  43. # Unit Test CMake compile log folder
  44. log_ut_cmake
  45. # test application build files
  46. tools/test_apps/**/build/
  47. tools/test_apps/**/build_*_*/
  48. tools/test_apps/**/sdkconfig
  49. tools/test_apps/**/sdkconfig.old
  50. # IDF monitor test
  51. tools/test_idf_monitor/outputs
  52. TEST_LOGS
  53. # gcov coverage reports
  54. *.gcda
  55. *.gcno
  56. coverage.info
  57. coverage_report/
  58. test_multi_heap_host
  59. # VS Code Settings
  60. .vscode/
  61. # VIM files
  62. *.swp
  63. *.swo
  64. # Clion IDE CMake build & config
  65. .idea/
  66. cmake-build-*/
  67. # Results for the checking of the Python coding style and static analysis
  68. .mypy_cache
  69. flake8_output.txt
  70. # ESP-IDF default build directory name
  71. build
  72. # lock files for examples and components
  73. dependencies.lock
  74. # managed_components for examples
  75. managed_components
  76. # pytest log
  77. pytest_embedded_log/