.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. # Components Unit Test Apps files
  19. components/**/build
  20. components/**/sdkconfig
  21. components/**/sdkconfig.old
  22. # Example project files
  23. examples/**/sdkconfig
  24. examples/**/sdkconfig.old
  25. examples/**/build
  26. # Doc build artifacts
  27. docs/_build/
  28. docs/doxygen_sqlite3.db
  29. # Downloaded font files
  30. docs/_static/DejaVuSans.ttf
  31. docs/_static/NotoSansSC-Regular.otf
  32. # Unit test app files
  33. tools/unit-test-app/sdkconfig
  34. tools/unit-test-app/sdkconfig.old
  35. tools/unit-test-app/build
  36. tools/unit-test-app/builds
  37. tools/unit-test-app/output
  38. tools/unit-test-app/test_configs
  39. # Unit Test CMake compile log folder
  40. log_ut_cmake
  41. # test application build files
  42. tools/test_apps/**/build
  43. tools/test_apps/**/sdkconfig
  44. tools/test_apps/**/sdkconfig.old
  45. # IDF monitor test
  46. tools/test_idf_monitor/outputs
  47. TEST_LOGS
  48. # gcov coverage reports
  49. *.gcda
  50. *.gcno
  51. coverage.info
  52. coverage_report/
  53. test_multi_heap_host
  54. # VS Code Settings
  55. .vscode/
  56. # VIM files
  57. *.swp
  58. *.swo
  59. # Clion IDE CMake build & config
  60. .idea/
  61. cmake-build-*/
  62. # Results for the checking of the Python coding style and static analysis
  63. .mypy_cache
  64. flake8_output.txt
  65. # ESP-IDF default build directory name
  66. build
  67. # lock files for examples and components
  68. dependencies.lock
  69. # managed_components for examples
  70. managed_components