class RuboCop::Cop::Chef::Style::AttributeKeys

Check which style of keys are used to access node attributes.

There are two supported styles: “symbols” and “strings”.

@example when configuration is ‘EnforcedStyle: symbols`

### incorrect
node['foo']
node["foo"]

### correct
node[:foo]

@example when configuration is ‘EnforcedStyle: strings`

### incorrect
node[:foo]

### correct
node['foo']
node["foo"]