Created
May 2, 2023 13:23
-
-
Save mohammadhb/84e18b61358b7aca8796abdc1a98892e to your computer and use it in GitHub Desktop.
Clean Code Rules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Most code lines should be 40~80 column long after 150 col is not acceptable. | |
// And the reader have to scroll to the right | |
"editor.rulers": [ | |
40, | |
80, | |
150 | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment