Chef/Correctness/ScopedFileExist
The Cookstyle cops department: Chef/Correctness
| Enabled by default | Supports autocorrection | Target Chef Version |
|---|---|---|
| Enabled | Yes | All 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
| Name | Default value | Configurable values |
|---|---|---|
| Version Added | 5.15.0 | String |
| Include | Array |