39 lines
456 B
Plaintext
39 lines
456 B
Plaintext
|
# Ignore version control
|
||
|
.git
|
||
|
.gitignore
|
||
|
|
||
|
# Ignore CI/CD and workflow files
|
||
|
.gitea/
|
||
|
.github/
|
||
|
.gitlab/
|
||
|
|
||
|
# Ignore local development files
|
||
|
*.swp
|
||
|
*.swo
|
||
|
*.bak
|
||
|
*.tmp
|
||
|
*.log
|
||
|
|
||
|
# Ignore OS and editor files
|
||
|
.DS_Store
|
||
|
Thumbs.db
|
||
|
.vscode/
|
||
|
.idea/
|
||
|
|
||
|
# Ignore test and documentation files
|
||
|
tests/
|
||
|
docs/
|
||
|
README*
|
||
|
|
||
|
# Ignore node and Python artifacts (if present)
|
||
|
node_modules/
|
||
|
__pycache__/
|
||
|
|
||
|
# Ignore build output
|
||
|
dist/
|
||
|
build/
|
||
|
|
||
|
# Ignore secrets and configs
|
||
|
*.env
|
||
|
.env.*
|
||
|
secrets/
|