/ .gitignore
.gitignore
 1  .config
 2  *.o
 3  *.pyc
 4  
 5  # gtags
 6  GTAGS
 7  GRTAGS
 8  GPATH
 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
25  components/**/build
26  components/**/sdkconfig
27  components/**/sdkconfig.old
28  
29  # Example project files
30  examples/**/sdkconfig
31  examples/**/sdkconfig.old
32  examples/**/build
33  
34  # Doc build artifacts
35  docs/_build/
36  docs/doxygen_sqlite3.db
37  
38  # Downloaded font files
39  docs/_static/DejaVuSans.ttf
40  docs/_static/NotoSansSC-Regular.otf
41  
42  # Unit test app files
43  tools/unit-test-app/sdkconfig
44  tools/unit-test-app/sdkconfig.old
45  tools/unit-test-app/build
46  tools/unit-test-app/builds
47  tools/unit-test-app/output
48  tools/unit-test-app/test_configs
49  
50  # Unit Test CMake compile log folder
51  log_ut_cmake
52  
53  # test application build files
54  tools/test_apps/**/build
55  tools/test_apps/**/sdkconfig
56  tools/test_apps/**/sdkconfig.old
57  
58  # IDF monitor test
59  tools/test_idf_monitor/outputs
60  
61  TEST_LOGS
62  
63  # gcov coverage reports
64  *.gcda
65  *.gcno
66  coverage.info
67  coverage_report/
68  
69  test_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/
80  cmake-build-*/
81  
82  # Results for the checking of the Python coding style and static analysis
83  .mypy_cache
84  flake8_output.txt
85  
86  # ESP-IDF default build directory name
87  build
88  
89  # lock files for examples and components
90  dependencies.lock