Advanced Search
Search Results
6 total results found
Coding Standard
Overview Coding standards are collections of coding rules, guidelines, and best practices. It gives a uniform appearance to the codes written by different engineers and developers, and improves readability and maintainability of the code while reducing th...
Naming Standard
Overview Consistency is the key to maintainable code. This statement is most true for naming your projects, source files, and identifiers including Fields, Variables, Properties, Methods, Parameters, Classes, Interfaces, and Namespaces. ❓ Why should I ...
Namespace Standard
Overview A namespace is simply a collection of classes that are referred to using a chosen prefix on the class name. They are commonly structured as hierarchies to allow reuse of names in different contexts and to enforce modularity. ❓ Why should I car...
Foldering Standard
Overview A good project structure can communicate where to find certain files and assets to the team, regardless the size or the complexity level of the project. ❓ Why should I care about this article? Even in smaller projects, properly structuring yo...
Git Usage Standard
Overview Git allows us to easily synchronize changes with other users and machines, which lets you and your teammates work on the same codebase. ❓ Why should I care about this article? When working with a team on a Git-managed project, it’s important ...
Git Branching Standard
Standard Brief Our Git Branching standard is enforced to ensures consistent workflow every time. Uniformed and standardized approach will help save time, simplify things, and prevent any confusion in your quest’s day-to-day Scope This standard cover the...