chore(gitignore): remove bogus extensions and relocate nano.*.save

- 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
This commit is contained in:
Xubin Ren
2026-04-08 00:42:25 +08:00
committed by Xubin Ren
parent 873bf5e692
commit c736cecc28
+1 -4
View File
@@ -4,17 +4,13 @@
.docs .docs
.env .env
.web .web
nano.*.save
# Python bytecode & caches # Python bytecode & caches
*.pyc *.pyc
*.pycs
*.pyo *.pyo
*.pyd *.pyd
*.pyw *.pyw
*.pyz *.pyz
*.pywz
*.pyzz
__pycache__/ __pycache__/
*.egg-info/ *.egg-info/
*.egg *.egg
@@ -76,6 +72,7 @@ Desktop.ini
*.swp *.swp
*.swo *.swo
*~ *~
nano.*.save
# Environment & secrets (keep examples tracked if needed) # Environment & secrets (keep examples tracked if needed)
.env.* .env.*