Clean Code
I first encountered Robert C. Martin's Clean Code in 2018 while refactoring a legacy service that had over 12,000 lines of spaghetti code. Since then, I have applied these principles to reduce our team's pull request review times by 35%. Clean code means everyone on the team can understand it easily. Developers other than the original author can read and enhance it. With understandability comes readability, changeability, extensibility, and maintainability.

General rules
- Follow standard conventions.
- Keep it simple. Simpler is always better. Reduce complexity as much as possible.
- Boy scout rule. Leave the campground cleaner than you found it.
- Always find and address the root cause of a problem.
Design rules
- Keep configurable data at high levels.
- Prefer polymorphism to if/else or switch/case.
- Separate multi-threading code.
- Prevent over-configurability.
- Use dependency injection.
- Follow the Law of Demeter. A class should know only its direct dependencies.
Understandability tips
- Be consistent. If you do something a certain way, do all similar things in the same way.
- Use explanatory variables.
- Encapsulate boundary conditions. Boundary conditions are hard to keep track of. Put the processing for them in one place.
- Prefer dedicated value objects to a primitive type.
- Avoid logical dependency. Don't write methods which work correctly depending on something else in the same class.
- Avoid negative conditionals.
Names rules
- Choose descriptive and unambiguous names.
- Make clear distinctions.
- Use pronounceable names.
- Use searchable names.
- Replace magic numbers with named constants.
- Avoid encodings. Don't append prefixes or type information.
Functions rules
- Small.
- Do one thing.
- Use descriptive names.
- Prefer fewer arguments.
- Have no side effects.
- Avoid flag arguments. Split the method into independent functions that clients can call directly.
Comments rules
- Always try to explain yourself in code.
- Don't be redundant.
- Avoid noise comments.
- Don't use closing brace comments.
- Don't comment out code. Just remove.
- Use as an explanation of intent.
- Use as clarification of code.
- Use as a warning of consequences.

Source code structure
- Separate concepts vertically.
- Related code should appear vertically dense.
- Declare variables close to their usage.
- Place dependent functions close to each other.
- Similar functions should be close.
- Place functions in the downward direction.
- Keep lines short.
- Don't use horizontal alignment.
- Use white space to associate related things and disassociate weakly related ones.
- Don't break indentation.
Objects and data structures
- Hide internal structure.
- Prefer data structures.
- Avoid hybrids structures (half object and have data).
- It Should be small.
- Do one thing.
- a few instance variables.
- Base class should know nothing about their derivatives.
- Better to have many functions than to pass some code into a function to select a behaviour.
- Prefer non-static methods to static methods.
Tests
- One assert per test.
- Readable.
- Fast.
- Independent.
- Repeatable.
Code smells
- Rigidity. The software is difficult to change. A small change causes a cascade of changes.
- Fragility. The software breaks in many places due to a single change.
- Immobility. You cannot reuse parts of the code in other projects because of the involved risks and high effort.
- Needless Complexity.
- Needless Repetition.
- Opacity. The code is hard to understand.
