Skip to content

Introduce Git Ignore #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 22, 2024
Merged
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
204 changes: 204 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,204 @@
# General ignores for OS and development tools

# macOS
.DS_Store
.AppleDouble
.LSOverride

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/

# Linux
.Trash-*

# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
pnpm-debug.log*
lerna-debug.log*

# Dependency directories
node_modules/
jspm_packages/

# Optional npm cache directory
.npm
.pnpm-store/

# IDEs and Editors

# VSCode
.vscode/
.vscode-test/

# Sublime Text
*.sublime-workspace

# JetBrains (IntelliJ, PyCharm, WebStorm)
.idea/
*.iml
*.iws
*.ipr
out/

# Visual Studio
.vs/
*.csproj.user
*.suo
*.user
*.userosscache
*.sln.docstates

# Eclipse
*.pydevproject
.project
.metadata/
bin/
tmp/

# Android Studio
.gradle/
local.properties
.idea/
.DS_Store
/build/
captures/

# Xcode
*.xcworkspace
xcuserdata/
*.xcuserstate
build/

# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
env/
venv/
ENV/
venv.bak/

# Pipenv
Pipfile.lock

# Poetry
poetry.lock

# Django
*.sqlite3
/static/
*.pyc

# Ruby
*.gem
*.rbc
.rspec
Gemfile.lock
vendor/bundle/
.rvm/
.rbenv/
.ruby-version
.ruby-gemset

# Go
bin/
vendor/
*.exe
*.test
*.out

# Rust
/target/
**/*.rs.bk
Cargo.lock

# PHP
vendor/
composer.lock

# Java
*.class
*.jar
*.war
*.ear
*.class
*.iml
*.ipr
.idea/
target/
*.log

# C/C++
*.obj
*.o
*.a
*.lib
*.so
*.exe
*.dll
.vscode/
.clangd/
.ccls-cache/

# Archives
*.zip
*.tar.gz
*.7z
*.rar

# System files
Thumbs.db
Desktop.ini
.DS_Store
.idea/
*.bak

# Ignore build artifacts and intermediate files.
*.class
*.war
*.ear
*.jar
*.dll
*.o
*.so
*.exe
*.out
*.pyc
*.pyo

# Environment variables and credentials
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# Temporary files and backups
*.tmp
*.swp
*.swo
*~
*.bak
*.old
*.orig
*.save
*.rej
# Ignore coverage reports
coverage/
.nyc_output/
*.lcov
Loading