tonyhffong / Lint.jl

A lint tool for Julia code
Other
169 stars 33 forks source link

Add name of undeclared symbol in `E321` #190

Closed dpsanders closed 7 years ago

dpsanders commented 7 years ago

It would be useful to have the undeclared symbol(s) listed in the E321 error message.

TeroFrondelius commented 7 years ago

Hi @dpsanders, This is actually linter-julia bug:

julia> using Lint

julia> lintfile("fileName.jl","THIS_IS_SHOWN")
fileName.jl:1 E321 THIS_IS_SHOWN: use of undeclared symbol

julia>
TeroFrondelius commented 7 years ago

I opened a new issue to track this. https://github.com/TeroFrondelius/linter-julia/issues/29

TeroFrondelius commented 7 years ago

This is fixed in liner-julia. This issue can be closed.

dpsanders commented 7 years ago

Thanks!