From c736cecc2810d162ad64927a697ee3a60732d08b Mon Sep 17 00:00:00 2001 From: Xubin Ren Date: Tue, 7 Apr 2026 16:40:51 +0000 Subject: [PATCH] chore(gitignore): remove bogus extensions and relocate nano.*.save MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Drop *.pycs, *.pywz, *.pyzz — not real Python file extensions. - Move nano.*.save from "Project-specific" to "Editors & IDEs" where it belongs (nano editor backup files, not project artifacts). Made-with: Cursor --- .gitignore | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 608a48dfe..68a879ba2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,17 +4,13 @@ .docs .env .web -nano.*.save # Python bytecode & caches *.pyc -*.pycs *.pyo *.pyd *.pyw *.pyz -*.pywz -*.pyzz __pycache__/ *.egg-info/ *.egg @@ -76,6 +72,7 @@ Desktop.ini *.swp *.swo *~ +nano.*.save # Environment & secrets (keep examples tracked if needed) .env.*