Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 802 Bytes

style-guide.md

File metadata and controls

15 lines (8 loc) · 802 Bytes

👁️ Style Guide

When you work with large projects, it's important that you remain consistent throughout the codebase and follow the best practices. To guarantee the quality of your codebase, you need to analyze different levels of the applications code.

Clean Code

This is the most abstract level of code standardization. It's related to the implementations independent of the programming language. It will help the readability of your code.

Clean Code Javascript

Naming

One of the most important points of the Clean Code is how you name your functions, variables, components, etc. Use this amazing guide to understand how to write better variable names.

Naming Cheatsheet