.gitignore 654 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .config
  2. *.o
  3. *.i
  4. *.s
  5. *.orig
  6. *.pyc
  7. # gtags
  8. GTAGS
  9. GRTAGS
  10. GPATH
  11. # emacs
  12. .dir-locals.el
  13. # emacs temp file suffixes
  14. *~
  15. .#*
  16. \#*#
  17. # eclipse setting
  18. .settings
  19. # MacOS directory files
  20. .DS_Store
  21. # Example project files
  22. examples/**/sdkconfig
  23. examples/**/sdkconfig.old
  24. examples/**/build
  25. # Test app files
  26. test_app/build
  27. test_app/sdkconfig
  28. test_app/sdkconfig.old
  29. # Doc build artifacts
  30. docs/_build/
  31. docs/doxygen-warning-log.txt
  32. docs/sphinx-warning-log.txt
  33. docs/sphinx-warning-log-sanitized.txt
  34. docs/xml/
  35. docs/xml_in/
  36. docs/man/
  37. docs/doxygen_sqlite3.db
  38. TEST_LOGS
  39. # gcov coverage reports
  40. *.gcda
  41. *.gcno
  42. coverage.info
  43. coverage_report/
  44. # VS Code Settings
  45. .vscode/