Skip to content

Instantly share code, notes, and snippets.

View AllanRDS's full-sized avatar
🎯
Focusing

Allan Reymond da Silva AllanRDS

🎯
Focusing
View GitHub Profile
@AllanRDS
AllanRDS / clean_code.md
Created December 13, 2024 07:12 — forked from wojteklu/clean_code.md
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules

@AllanRDS
AllanRDS / settings.json
Last active September 17, 2024 23:49 — forked from diego3g/settings.json
VSCode Settings (Updated)
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 14,
"editor.lineHeight": 1.8,
"javascript.suggest.autoImports": true,
"editor.hideCursorInOverviewRuler": true,
"workbench.statusBar.visible": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"extensions.ignoreRecommendations": true,
"typescript.tsserver.log": "off",