Skip to content
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

Add .gitignore template #37

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
73 changes: 73 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# Operating system files
.DS_Store
Thumbs.db

# Node.js dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
.pnpm-debug.log*

# Build outputs
dist/
build/
.out/
.cache/

# Logs
*.log
logs/
*.out
*.pid
*.seed
*.pid.lock

# Environment variables
.env
.env.*.local

# Editor-specific files
.vscode/
.idea/
*.swp
*~

# System-generated files
*.bak
*.tmp
*.old
*.orig
*.rej

# TypeScript
*.tsbuildinfo

# Python
*.pyc
*.pyo
__pycache__/

# Java/Gradle
*.class
.gradle/
build/

# Rust/Cargo
target/

# Go
bin/
*.exe

# Images generated by git-lfs
*.lfs

# Ignore sensitive configuration files
config.json
secret.json

# Custom ignores
custom_folder/

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Manual check passed.