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