1.0.2 • Published 6 years ago

drivezybusiness v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

DrivezyBusinessLogics

Coding practises (Strictly)

1 - All folder names should start with upper case. Examples - Booking, Booking Flow, Profile etc.

2 - All new classes inside folder should start with capital case and rest lower. For two or more words capitalize first letter of each word Examples - Booking, BookingFlow

3 - All methods/functions would start with small letter and would follow camel casing. Examples - initializeViewForTrips

4 - All variables name should be declared in such a way that it would convey what this variable holds. Examples - citiesVenuesCars

5 - All constants should be in capital, separated by _ Examples - APP_NAME

6 - All export function should follow classes like naming conventions. Examples - BookingFlow

7 - All other utility classes would starts with lower case separated with . Examples - api.private.js

Thanks for reading this