Description
OneDeclarationPerLine - rule means that you write the declaration of each variable or constant one per line - makes your code more readable and understandable, and has the advantage of making it easier to index and find code quickly because each declaration is clearly separated.
Description