.gitignore 1.2 KB

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