Foodcritic / foodcritic

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

FC033 false positive when there is a "template" word in the template source path #804

Open grdz opened 5 years ago

grdz commented 5 years ago

How to reproduce:

create in your cookbook folder templates/default/something/template/something.txt and then try to use it with "template" resource:

template 'something.txt' do
  source 'something/template/something.txt'
end

it will trigger FC033, but when you will change templates/default/something/template directory name to let's say templates/default/something/notatemplate and also change it in the resource:

template 'something.txt' do
  source 'something/notatemplate/something.txt'
end

then the error disappear.