From 1a36ac032904a459531c04b331f4b71c35c2a422 Mon Sep 17 00:00:00 2001 From: Arllem Farias Date: Tue, 5 May 2026 19:51:20 -0400 Subject: [PATCH] Ignore .jupyter directory (local config files) This directory is automatically created by the Jupyter system to store user-specific settings, security tokens, and server configurations. It should not be tracked as it contains environment-specific data. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5f1fd1ee08..51e27f842d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ lib/ node_modules/ *.egg-info/ .ipynb_checkpoints +.jupyter *.tsbuildinfo # Created by https://www.gitignore.io/api/python