mulang icon indicating copy to clipboard operation
mulang copied to clipboard

Smell for sentences without effect

Open Gustrucco opened this issue 3 years ago • 0 comments

It would be great to have a Code smell that check if a sentence has no effect. For example:

Ruby:

module Car
   @fuel
   @model
end

or

JS:

function double(number) {
   number * 2;
}

Gustrucco avatar Feb 24 '21 22:02 Gustrucco