Code Smell 87 - Inconsistent Parameters Sorting
Be consistent with the parameters you use. Code is prose.
TL;DR: Don't confuse you readers. Keep the order.
Problems
Readability
Consistency
Solutions
Refactor and change parameters order.
Use named parameters
Sample Code
Wrong
function giv...
maximilianocontieri.com1 min read