Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 488 Bytes

CONTRIBUTING.md

File metadata and controls

7 lines (4 loc) · 488 Bytes

Contributing Guidelines

Style guide

  • Don't use special naming conventions (e.g. uppercase for constants, $ for observables, _ for private members), except capitalization to distinguish a type (class, interface, type alias, enum) from a value of that type, which is the equivalent of using definite and indefinite articles in actual English. React components are an exception to this because of limitations of JSX syntax.

  • Write acronyms in camel case: getUrl, not getURL.