julia-vscode / StaticLint.jl

Static Code Analysis for Julia

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Code point normalization trips up linter

fredrikekre opened this issue · comments

function f()
    ε = 1     # U+03B5             <---- Variable has been assigned but not used.
    x = ɛ + 1 # U+025B
    return x
end

Strangely enough, there is no complaint for ɛ being undefined on the second line of the function though.