From b7f4f3de5cbf239948a7ae9c3b769b9aaeafc3cd Mon Sep 17 00:00:00 2001 From: Soufiane <soufiane.elkharmo> Date: Thu, 27 Mar 2025 22:35:36 +0100 Subject: [PATCH] .gitignore --- .gitignore | 42 +++++++++--------------------------------- 1 file changed, 9 insertions(+), 33 deletions(-) diff --git a/.gitignore b/.gitignore index d802c03..e03dd6f 100755 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,15 @@ -# ------------------------------------------------------------------------ -# IGNORA FILE/REGISTRI DI SISTEMA -# ------------------------------------------------------------------------ + .DS_Store Thumbs.db -# ------------------------------------------------------------------------ -# VISUAL STUDIO CODE -# ------------------------------------------------------------------------ .vscode/ -.history/ # Se usi l'estensione VSCode "Local History" +.history/ -# Se vuoi ignorare file di configurazione specifici (opzionale): .vscode/settings.json .vscode/tasks.json .vscode/launch.json -# ------------------------------------------------------------------------ -# AMBIENTE VIRTUALE (venv) -# ------------------------------------------------------------------------ -# Se hai creato la venv con 'python -m venv venv' + venv/ .venv/ env/ @@ -27,34 +18,27 @@ ENV/ venv.bak/ venv_*/ -# ------------------------------------------------------------------------ -# PYTHON -# ------------------------------------------------------------------------ -# Compiled __pycache__/ *.py[cod] *$py.class -# Pacchetti e metadati + *.egg *.egg-info/ .eggs/ -# Distribuzioni + build/ dist/ wheels/ pip-wheel-metadata/ *.wheel -# Logs e file temporanei + *.log *.tmp *.temp -# ------------------------------------------------------------------------ -# TEST & COVERAGE -# ------------------------------------------------------------------------ htmlcov/ .tox/ .coverage @@ -67,19 +51,11 @@ coverage.xml *.py,cover .hypothesis/ -# ------------------------------------------------------------------------ -# JUPYTER NOTEBOOK -# ------------------------------------------------------------------------ .ipynb_checkpoints -# ------------------------------------------------------------------------ -# FILE DI CONFIGURAZIONE / CREDENZIALI -# ------------------------------------------------------------------------ -# Se hai file di ambiente con variabili segrete: + .env *.env -# Se usi Docker (opzionale): -# Dockerfile -# docker-compose.yml -# ------------------------------------------------------------------------ +.gitignore + -- GitLab