Update gitignore as per esp-idf gitignore.
This commit is contained in:
180
.gitignore
vendored
180
.gitignore
vendored
@@ -1,107 +1,111 @@
|
|||||||
# ---> C
|
.config
|
||||||
# Prerequisites
|
|
||||||
*.d
|
|
||||||
|
|
||||||
# Object files
|
|
||||||
*.o
|
*.o
|
||||||
*.ko
|
*.pyc
|
||||||
*.obj
|
|
||||||
*.elf
|
|
||||||
|
|
||||||
# Linker output
|
# gtags
|
||||||
*.ilk
|
GTAGS
|
||||||
*.map
|
GRTAGS
|
||||||
*.exp
|
GPATH
|
||||||
|
|
||||||
# Precompiled Headers
|
# emacs
|
||||||
*.gch
|
.dir-locals.el
|
||||||
*.pch
|
|
||||||
|
|
||||||
# Libraries
|
# emacs temp file suffixes
|
||||||
*.lib
|
*~
|
||||||
*.a
|
.#*
|
||||||
*.la
|
\#*#
|
||||||
*.lo
|
|
||||||
|
|
||||||
# Shared objects (inc. Windows DLLs)
|
# eclipse setting
|
||||||
*.dll
|
.settings
|
||||||
*.so
|
|
||||||
*.so.*
|
|
||||||
*.dylib
|
|
||||||
|
|
||||||
# Executables
|
# MacOS directory files
|
||||||
*.exe
|
.DS_Store
|
||||||
*.out
|
|
||||||
*.app
|
|
||||||
*.i*86
|
|
||||||
*.x86_64
|
|
||||||
*.hex
|
|
||||||
|
|
||||||
# Debug files
|
# cache dir
|
||||||
*.dSYM/
|
.cache/
|
||||||
*.su
|
|
||||||
*.idb
|
|
||||||
*.pdb
|
|
||||||
|
|
||||||
# Kernel Module Compile Results
|
# Doc build artifacts
|
||||||
*.mod*
|
docs/_build/
|
||||||
*.cmd
|
docs/doxygen_sqlite3.db
|
||||||
.tmp_versions/
|
|
||||||
modules.order
|
|
||||||
Module.symvers
|
|
||||||
Mkfile.old
|
|
||||||
dkms.conf
|
|
||||||
|
|
||||||
# ---> C++
|
# Downloaded font files
|
||||||
# Prerequisites
|
docs/_static/DejaVuSans.ttf
|
||||||
*.d
|
docs/_static/NotoSansSC-Regular.otf
|
||||||
|
|
||||||
# Compiled Object files
|
# Components Unit Test Apps files
|
||||||
*.slo
|
components/**/build/
|
||||||
*.lo
|
components/**/build_*_*/
|
||||||
*.o
|
components/**/sdkconfig
|
||||||
*.obj
|
components/**/sdkconfig.old
|
||||||
|
|
||||||
# Precompiled Headers
|
# Example project files
|
||||||
*.gch
|
examples/**/build/
|
||||||
*.pch
|
examples/**/build_*_*/
|
||||||
|
examples/**/sdkconfig
|
||||||
|
examples/**/sdkconfig.old
|
||||||
|
|
||||||
# Compiled Dynamic libraries
|
# Unit test app files
|
||||||
*.so
|
tools/unit-test-app/build
|
||||||
*.dylib
|
tools/unit-test-app/build_*_*/
|
||||||
*.dll
|
tools/unit-test-app/sdkconfig
|
||||||
|
tools/unit-test-app/sdkconfig.old
|
||||||
|
|
||||||
# Fortran module files
|
# test application build files
|
||||||
*.mod
|
tools/test_apps/**/build/
|
||||||
*.smod
|
tools/test_apps/**/build_*_*/
|
||||||
|
tools/test_apps/**/sdkconfig
|
||||||
|
tools/test_apps/**/sdkconfig.old
|
||||||
|
|
||||||
# Compiled Static libraries
|
TEST_LOGS/
|
||||||
*.lai
|
build_summary_*.xml
|
||||||
*.la
|
|
||||||
*.a
|
|
||||||
*.lib
|
|
||||||
|
|
||||||
# Executables
|
# gcov coverage reports
|
||||||
*.exe
|
*.gcda
|
||||||
*.out
|
*.gcno
|
||||||
*.app
|
coverage.info
|
||||||
|
coverage_report/
|
||||||
|
|
||||||
# ---> CMake
|
test_multi_heap_host
|
||||||
CMakeLists.txt.user
|
|
||||||
CMakeCache.txt
|
|
||||||
CMakeFiles
|
|
||||||
CMakeScripts
|
|
||||||
Testing
|
|
||||||
Makefile
|
|
||||||
cmake_install.cmake
|
|
||||||
install_manifest.txt
|
|
||||||
compile_commands.json
|
|
||||||
CTestTestfile.cmake
|
|
||||||
_deps
|
|
||||||
CMakeUserPresets.json
|
|
||||||
|
|
||||||
# Build directory
|
# VS Code Settings
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
# VIM files
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
|
||||||
|
# Sublime Text files
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# Clion IDE CMake build & config
|
||||||
|
.idea/
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
|
# Results for the checking of the Python coding style and static analysis
|
||||||
|
.mypy_cache
|
||||||
|
flake8_output.txt
|
||||||
|
|
||||||
|
# ESP-IDF default build directory name
|
||||||
build
|
build
|
||||||
|
|
||||||
# unity-app directory
|
# lock files for examples and components
|
||||||
unity-app
|
dependencies.lock
|
||||||
|
|
||||||
|
# managed_components for examples
|
||||||
|
managed_components
|
||||||
|
|
||||||
|
# pytest log
|
||||||
|
pytest-embedded/
|
||||||
|
# legacy one
|
||||||
|
pytest_embedded_log/
|
||||||
|
list_job*.txt
|
||||||
|
size_info*.txt
|
||||||
|
XUNIT_RESULT*.xml
|
||||||
|
.manifest_sha
|
||||||
|
|
||||||
|
# clang config (for LSP)
|
||||||
|
.clangd
|
||||||
|
|
||||||
|
# Vale
|
||||||
|
.vale/styles/*
|
||||||
Reference in New Issue
Block a user