We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e355e2 commit d7a53d8Copy full SHA for d7a53d8
CLAUDE.md
@@ -14,6 +14,7 @@ Performance, execution cost, and interpreter compatibility are critical.
14
- Use sparse comments explaining "why" not "how".
15
- Generated code should match existing idioms. Newer encoders such as QR Code are the best source of idiomatic code.
16
- Maintain existing user API (encoder interfaces and metadata).
17
+- Prefer derived values over opaque constants so that the code is auditable, unless prohibitively expensive (even for lazy init).
18
- Static data should be hoisted out of the main procedure, and deferred with lazy initialisation if it must be derived
19
- Static and cached structures should be readonly
20
- Prefer stack work over dictionary heavy code
0 commit comments