Style Guidelines
Chelsea Apps style guides, for all programming languages used and for Frontend and Backend projects.
General
Names must use British English for all spellings
// Bad
const color = '#000000'
// Good
const colour = '#000000'Exception: If an external library uses American English spelling, names may use the same spelling for consistency
Typescript
TypeScriptLast updated
Was this helpful?