Updated gitignore
This commit is contained in:
parent
0c64090547
commit
255f10dfae
|
@ -1,3 +1,21 @@
|
||||||
|
# Build directories
|
||||||
|
build/
|
||||||
|
out/
|
||||||
|
dist/
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
|
# IDE and editor files
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
.vs/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
.DS_Store
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
|
||||||
|
# C++ specific
|
||||||
# Prerequisites
|
# Prerequisites
|
||||||
*.d
|
*.d
|
||||||
|
|
||||||
|
@ -30,32 +48,58 @@
|
||||||
*.exe
|
*.exe
|
||||||
*.out
|
*.out
|
||||||
*.app
|
*.app
|
||||||
|
nasal
|
||||||
|
nasal.exe
|
||||||
|
|
||||||
# VS C++ sln
|
# Visual Studio specific
|
||||||
*.sln
|
*.sln
|
||||||
*.vcxproj
|
*.vcxproj
|
||||||
*.vcxproj.filters
|
*.vcxproj.filters
|
||||||
*.vcxproj.user
|
*.vcxproj.user
|
||||||
.vs
|
x64/
|
||||||
x64
|
|
||||||
CMakePresents.json
|
CMakePresents.json
|
||||||
|
ipch/
|
||||||
|
*.aps
|
||||||
|
*.ncb
|
||||||
|
*.opendb
|
||||||
|
*.opensdf
|
||||||
|
*.sdf
|
||||||
|
*.cachefile
|
||||||
|
*.VC.db
|
||||||
|
*.VC.VC.opendb
|
||||||
|
|
||||||
# nasal executable
|
# CMake
|
||||||
nasal
|
CMakeCache.txt
|
||||||
nasal.exe
|
CMakeFiles/
|
||||||
|
cmake_install.cmake
|
||||||
|
install_manifest.txt
|
||||||
|
CTestTestfile.cmake
|
||||||
|
_deps/
|
||||||
|
|
||||||
# misc
|
# Node.js specific (for the web app)
|
||||||
.vscode
|
node_modules/
|
||||||
dump
|
npm-debug.log
|
||||||
|
yarn-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
package-lock.json
|
||||||
|
|
||||||
|
# Project specific
|
||||||
|
dump/
|
||||||
fgfs.log
|
fgfs.log
|
||||||
.temp.*
|
.temp.*
|
||||||
|
*.ppm
|
||||||
|
|
||||||
# build dir
|
# Logs and databases
|
||||||
build
|
*.log
|
||||||
out
|
*.sqlite
|
||||||
|
*.sqlite3
|
||||||
|
*.db
|
||||||
|
|
||||||
# macOS special cache directory
|
# OS generated files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.DS_Store?
|
||||||
# ppm picture generated by ppmgen.nas
|
._*
|
||||||
*.ppm
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
ehthumbs.db
|
||||||
|
Thumbs.db
|
Loading…
Reference in New Issue