Table of Contents

Enum CodeStyle

Namespace
LMKit.Agents.Templates
Assembly
LM-Kit.NET.dll

Coding style preferences for code generation.

public enum CodeStyle

Fields

Clean = 0

Clean code principles - readable, simple, well-organized.

Performant = 1

Performance-optimized code.

Defensive = 2

Defensive coding with extensive validation.

Minimal = 3

Minimal code without unnecessary abstractions.

Enterprise = 4

Enterprise patterns with SOLID principles.