julia-vscode / StaticLint.jl

Static Code Analysis for Julia

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing unused argument warning for short form function

fredrikekre opened this issue · comments

g(x) = 1

doesn't warn for unused x like

function f(x)
    return 1
end