-
All the major code should be inside the
src
folder in the root folder. -
All folder names should start with small letters to maintain code uniformity.
-
All file names also should be in small letters. Whereas the Class inside those files should start with capital letter.
-
All styling that you do for the components should NOT be inline but a separate Stylesheet file should be created inside
./src/assets/styles
. -
The code you write should be well documented and must follow the rule of 100 characters per line. You can set this limit from your editors settings.
-
Use Prettier in your editor for auto code formatting and beautification.
-
Enable
Single Quotes
settings in Prettier plugin of your editor. You can change the number of characters per line from thePrint Width
settings option.