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-07 16:40:51 +00:00 committed by Xubin Ren
parent 873bf5e692
commit c736cecc28

5
.gitignore vendored
View File

@ -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.*