shell-scripts/.gitignore

131 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2023-10-17 22:59:08 +02:00
# Temporary files and directories
prova**
test**
2023-10-17 22:59:08 +02:00
temp**
output**
*.log
2023-04-29 19:38:13 +02:00
*.old
2023-10-17 22:59:08 +02:00
*.tmp
*.bak
temp/
2023-10-17 22:59:08 +02:00
tmp/
old/
2023-10-17 22:59:08 +02:00
# Diff files
*.patch
*.diff
## Python
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Translations
*.mo
*.pot
# Sphinx documentation
docs/_build/
2023-04-29 19:38:13 +02:00
## Linux
*~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
.directory
2023-04-29 19:38:13 +02:00
# Linux trash folder which might appear on any partition or disk
.Trash-*
# .nfs files are created when an open file is removed but is still being accessed
.nfs*
## Windows
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
# Dump file
*.stackdump
# Folder config file
[Dd]esktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp
# Windows shortcuts
*.lnk
2023-10-17 22:59:08 +02:00
## macOS
.DS_Store
.AppleDouble
.LSOverride
2023-04-29 19:38:13 +02:00
## Kate
# Swap Files #
.*.kate-swp
.swp.*
## Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
2023-10-17 22:59:08 +02:00
*.code-workspace
2023-04-29 19:38:13 +02:00
# Local History for Visual Studio Code
.history/
# Built Visual Studio Code Extensions
*.vsix
2023-10-17 22:59:08 +02:00
## JetBrains IDEs
.idea/