We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84d7c20 commit d89d133Copy full SHA for d89d133
1 file changed
.github/copilot-instructions.md
@@ -58,7 +58,9 @@
58
59
## Architecture
60
61
-- Eager imports unless profiling proves a lazy alternative is needed.
+- Eager imports at the top of the module by default. Use lazy imports (inside a
62
+ method body) only when necessary to break circular dependencies or to keep
63
+ `core/` free of heavy utility imports on rarely-called paths (e.g. `help()`).
64
- No `pkgutil` / `importlib` auto-discovery patterns.
65
- No background/daemon threads.
66
- No monkey-patching or runtime class mutation.
0 commit comments