removeUseOfOutputRemove this use of the output from "{{name}}"; "{{name}}" doesn't return anything.small-rules/no-use-of-empty-return-valueDisallow using the return value of functions that do not return anything.
removeUseOfOutputRemove this use of the output from "{{name}}"; "{{name}}" doesn't return anything.This rule does not accept options.
function doWork() { sideEffect();}const result = doWork();function getValue() { return 1;}const result = getValue();