added gitignore and clang-tidy config
This commit is contained in:
68
.gitignore
vendored
Normal file
68
.gitignore
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
# Executables
|
||||
/bin
|
||||
/bin_*
|
||||
|
||||
# Vulkan API dumps
|
||||
/api_dump*
|
||||
|
||||
# Compile commands
|
||||
compile_commands.json
|
||||
|
||||
# whatever this is
|
||||
.cache
|
||||
|
||||
# ImGui config
|
||||
/imgui.ini
|
||||
|
||||
# Environment setup
|
||||
/.env
|
||||
|
||||
# Build Configuration
|
||||
/config.py
|
||||
/config_*.py
|
||||
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# Compiled Object files
|
||||
*.slo
|
||||
*.lo
|
||||
*.o
|
||||
*.obj
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
|
||||
# Fortran module files
|
||||
*.mod
|
||||
*.smod
|
||||
|
||||
# Compiled Static libraries
|
||||
*.lai
|
||||
*.la
|
||||
*.a
|
||||
*.lib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
|
||||
# Debug Info
|
||||
*.pdb
|
||||
|
||||
# for projects that use SCons for building: http://http://www.scons.org/
|
||||
.sconsign.dblite
|
||||
|
||||
# Byte-compiled / optimized python files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
Reference in New Issue
Block a user