Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 105 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
# C++ ignores
*.o
*.obj
*.exe
*.out
*.app
*.dll
*.so
*.dylib
.vs/
build/
CMakeFiles/
CMakeCache.txt
cmake_install.cmake

# Go ignores
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
go.work
/vendor/
/bin/
/pkg/

# Java ignores
*.class
*.log
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
hs_err_pid*
.classpath
.project
.settings/
target/
bin/
.gradle/
build/

# JavaScript ignores
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
coverage/
dist/
build/
.DS_Store

# Python ignores
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
.env
.venv
env/
venv/
ENV/
.pytest_cache/
.coverage
htmlcov/

# Rust ignores
/target/
**/*.rs.bk
Cargo.lock
debug/
release/

# IDE specific files
.idea/
.vscode/
*.swp
*.swo
*~