- Step 1 - Fork this repository.
- Step 2 - Clone the repository to your local machine.
- Step 3 - Add features, resolve the bugs, mentions provided in the Issues section of the repository. Also add a description of what changes you have done.
- Step 4 - Add the changes to your repository.
- Step 5 - Create a PULL Request. And that's all.
- NOTE - Please start the filename with the platform name on which the problem was solved. For eg if you are submitting graph problem from codechef then mention filename as (CODECHEF) chefandgraph.cpp.
- Features
- Fixes
- Issues
- Enhancements
- Respect each other
- No inhuman behaviour
- Dont push directly to main
- Dont push breaking changes
- Global variables written in UPPERCASE (We don't, but it's quite common) e.g
CATS - Constants (like PI) written in UPPERCASE e.g
let PI = 3.1413 - Filenames are written in snake case e.g
manage_products.ts - Component, Class, Interface, Enum, Module and Constructor names are written in Pascal case e.g
ManageProductsComponent,ManageProductsModule,ManageProductsService - Variable, Function, Method, Property names are written in camel case e.g
manageProducts,getProducts() - Alias names are written in Pascal case e.g
ManageProductsComponent