class RuboCop::Cop::Chef::Correctness::ScopedFileExist

Scope file exist to access the correct ‘File` class by using `::File.exist?` not `File.exist?`.

@example

### incorrect
not_if { File.exist?('/etc/foo/bar') }

### correct
not_if { ::File.exist?('/etc/foo/bar') }