Skip to main content

ScopedFileExist

All Cookstyle Cops


The department is: Chef/Correctness

The full name of the cop is: Chef/Correctness/ScopedFileExist


Enabled by defaultSupports autocorrectionTarget Chef Version
EnabledYesAll Versions

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

Examples

incorrect

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

correct

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

Configurable attributes

NameDefault valueConfigurable values
Version Added5.15.0String
Exclude
  • **/attributes/*.rb
  • **/metadata.rb
  • **/Berksfile
Array

Was this page helpful?









Search Results