Files
accounting-system/.gitignore
Invoice Master fa996683c3 chore: update .gitignore for .NET 10 + React project
- Add comprehensive .NET/C# ignore patterns
- Add React/Vite/Node.js ignore patterns
- Remove obsolete Python-specific patterns
- Organize by technology stack
2026-02-04 23:24:12 +01:00

150 lines
1.4 KiB
Plaintext

# .NET / C#
## Build outputs
bin/
obj/
out/
## Visual Studio
.vs/
*.suo
*.user
*.userosscache
*.sln.docstates
*.userprefs
## Visual Studio Code
.vscode/
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
## Rider / IntelliJ
.idea/
*.sln.iml
## .NET Core
project.lock.json
project.fragment.lock.json
artifacts/
## ASP.NET Scaffolding
ScaffoldingReadMe.txt
## NuGet
*.nupkg
*.snupkg
.nuget/
packages/
## Test Results
TestResults/
*.trx
*.coverage
*.coveragexml
## BenchmarkDotNet
BenchmarkDotNet.Artifacts/
# Frontend (React/Vite)
## Dependencies
node_modules/
.pnp
.pnp.js
## Build outputs
dist/
dist-ssr/
build/
*.local
## Logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
## TypeScript
*.tsbuildinfo
## Vite
.vite/
## ESLint
.eslintcache
## Stylelint
.stylelintcache
# Python (if any scripts)
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
.installed.cfg
*.egg
# Virtual environments
venv/
ENV/
env/
.venv
# IDEs and Editors
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# Environment variables
.env
.env.local
.env.*.local
!.env.example
# Database
*.db
*.sqlite
*.sqlite3
# Logs
*.log
logs/
# Coverage
coverage/
htmlcov/
# Terraform
.terraform/
*.tfstate
*.tfstate.*
*.tfvars
!.tfvars.example
.terraform.lock.hcl
# Azure
azure_credentials.json
# Secrets
*.pem
*.key
secrets/
# Temporary files
*.tmp
*.temp
.cache/
# OS files
.DS_Store
Thumbs.db
desktop.ini
# Misc
*.bak
*.orig