Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Latest commit

 

History

History
9 lines (6 loc) · 384 Bytes

style-guide.md

File metadata and controls

9 lines (6 loc) · 384 Bytes

Style Guide

This will only list exceptions / additions to the Roblox Lua Style Guide.

Casing

  • All directly publicly exported functions should be in PascalCase.
  • All private functions should be in camelCase.
  • Do not use an underscore unless it is in a public API- in which case, ensure it is gone from the exported type.