13 lines
273 B
Markdown
13 lines
273 B
Markdown
# Shared Medium Patterns
|
|
|
|
Naming conventions and common helpers shared across the four plugins.
|
|
|
|
## Naming
|
|
|
|
- `camelCase` for variables and functions
|
|
- `PascalCase` for classes and types
|
|
|
|
## Error Handling
|
|
|
|
- Early returns over nested conditionals
|
|
- Typed error subclasses
|