1. Naming Conventions

  • Variables should be named using snake_case.
    • Constants, on the other hand, should be named using UPPER_SNAKE_CASE.
  • Functions should be named using camelCase.

If you’re making a library, you should append the name of the library to the front of any functions or values using an underscore. e.g. math_squareRoot


This site uses Just the Docs, a documentation theme for Jekyll.