Skip to main content

Chef/Correctness/ScopedFileExist

Cookstyle cops page

The Cookstyle cops department: Chef/Correctness

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

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

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

Configurable attributes

NameDefault valueConfigurable values
Version Added5.15.0String
Include
    Array

    Thank you for your feedback!

    ×