mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-26 08:56:22 +02:00
33 lines
No EOL
407 B
Text
33 lines
No EOL
407 B
Text
# Ignore all __pycache__ directories
|
|
/__pycache__/
|
|
**/__pycache__/
|
|
**/**/__pycache__/
|
|
**/**/__pycache__/**
|
|
|
|
# Ignore all .pyc files
|
|
*.pyc
|
|
**/*.pyc
|
|
**/**/*.pyc
|
|
|
|
# Ignore .DS_Store files
|
|
.DS_Store
|
|
**/.DS_Store
|
|
**/**/.DS_Store
|
|
|
|
# Ignore VSCode files
|
|
.vscode/*
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
|
|
# Api keys
|
|
**/*api_keys*
|
|
|
|
# Ignore .out, .lock, .log files
|
|
*.out
|
|
**/*.out
|
|
**/**/*.out
|
|
*.log
|
|
**/*.log
|
|
**/**/*.log |