Skip to content

Files

Latest commit

 

History

History
28 lines (18 loc) · 976 Bytes

style_guides.md

File metadata and controls

28 lines (18 loc) · 976 Bytes

All code comments have to written in JavaDoc or Doxygen style.

You have to comment code in these cases:

  • Too logic overloaded method
  • Too many arguments in functions and methods in your code (more than 5)
  • If you use "bad practice" code (you should write a comment message which have to contain this questions answers: where, why and what)
  • You especially love writing documentation comments :)
  • You use short variable name which don't contain clear meaning for what they be.

JavaScript code style

As JS code style standard was taken Airbnb JavaScript Style Guide

TypeScript code style

We use Basarat style guide

React style guide

Standard Airbnb React/JSX Style Guide