mirror of
https://github.com/lone-cloud/gerbil
synced 2026-06-03 09:33:10 -07:00
478 B
Executable file
478 B
Executable file
Copilot Instructions for Gerbil
- NEVER use console.* calls - they are blocked by ESLint. Use
logError()from@/utils/node/logging(main process) orwindow.electronAPI.logs.logError()(renderer) - Always use absolute imports:
import { X } from '@/components/X' - Never add explicit return types to functions - rely on TypeScript inference
- Never create tests, docs, or GitHub workflows
- Move helper functions out of component files into separate utility files