Foodcritic / foodcritic

Lint tool for Chef cookbooks.
http://foodcritic.io
MIT License
407 stars 153 forks source link

FC044 false-positive #194

Open jaymzh opened 10 years ago

jaymzh commented 10 years ago

If you do this in an attribute file:

foo, bar = some_func(thing)
default['waka']['foo'] = foo
default['waka']['bar'] = bar

You get FC044 errors on the last line. You can work around it with:

foo = []
bar = []
foo, bar = some_func(thing)
default['waka']['foo'] = foo
default['waka']['bar'] = bar
jaymzh commented 10 years ago

@acrmp ping?

guillaume-brossard commented 10 years ago

I have the same issue.

tas50 commented 7 years ago

Confirmed this is still an issue on master