#==============================================================================#
# File extensions to be ignored anywhere in the tree.
#==============================================================================#

# Temp files created by most text editors
*~

# Merge files created by git
*.orig

# Byte compiled python modules
*.pyc
*.pyd

# Vim swap files
.*.sw?
.sw?

# Visual Studio
.vs
/.vscode/*

# Sublime Text settings
*.sublime-workspace
*.sublime-project

# Eclipse Project settings
*.*project
.settings

# OS X specific files
.DS_store

#==============================================================================#
# Explicit files to ignore (only matches one).
#==============================================================================#

# Various tags
/tags
/TAGS
/GPATH
/GRTAGS
/GSYMS
/GTAGS
/ID
.gitusers
/compile_commands.json

/CMakeSettings.json

# documentation artifacts
_toc.yml

#==============================================================================#
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
#==============================================================================#
# Nested build directory
/build*

# Downloaded models
test/onnx/models

# VS2017 and VSCode config files.
.vscode
.vs

# documentation artifacts
docs/_build
docs/_images
docs/_static
docs/_templates
docs/.doxygen/docBin
docs/.doxygen/DoxygenWarningLog.txt
docs/_doxygen
docs/html
/_readthedocs

# JetBrains config directories (ignoring symlinks)
.idea/
cmake-build*/
build*/

