julia-vscode/StaticLint.jl

Missing unused argument warning for short form function

fredrikekre opened this issue · 0 comments

g(x) = 1

doesn't warn for unused x like

function f(x)
    return 1
end