.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. TEST_LOGS
  51. # gcov coverage reports
  52. *.gcda
  53. *.gcno
  54. coverage.info
  55. coverage_report/
  56. test_multi_heap_host
  57. # VS Code Settings
  58. .vscode/
  59. # VIM files
  60. *.swp
  61. *.swo
  62. # Sublime Text files
  63. *.sublime-project
  64. *.sublime-workspace
  65. # Clion IDE CMake build & config
  66. .idea/
  67. cmake-build-*/
  68. # Results for the checking of the Python coding style and static analysis
  69. .mypy_cache
  70. flake8_output.txt
  71. # ESP-IDF default build directory name
  72. build
  73. # lock files for examples and components
  74. dependencies.lock
  75. # managed_components for examples
  76. managed_components
  77. # pytest log
  78. pytest_embedded_log/
  79. list_job_*.txt
  80. size_info.txt
  81. # clang config (for LSP)
  82. .clangd
  83. # Vale
  84. .vale/styles/*