.gitignore 386 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # Virtual environments
  6. .venv/
  7. venv/
  8. ENV/
  9. # IDE
  10. .idea/
  11. .vscode/
  12. # Test artifacts
  13. .pytest_cache/
  14. .coverage
  15. htmlcov/
  16. # OS
  17. .DS_Store
  18. Thumbs.db
  19. # Temp
  20. *.tmp
  21. *.temp
  22. .ace-tool/
  23. # Workspace pointer (local only)
  24. .webnovel-current-project
  25. # Local test scratch (do not commit)
  26. scripts/.tmp_pytest/
  27. scripts/.tmp_pytest_manual/
  28. scripts/zzz_test.db*