tonyhffong / Lint.jl

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

Enum and export (false positives) #236

Open s-celles opened 7 years ago

s-celles commented 7 years ago

Hello,

When running Lint with the following code:

@enum ActionWhenLong shorten=1 multiple=2
export shorten, multiple

it raises

W361 multiple: exporting undefined symbol

I only find https://github.com/tonyhffong/Lint.jl/issues/94 related to enum... but that's a bit different here.

Kind regards