class RuboCop::Cop::RSpec::MetadataStyle

Use consistent metadata style.

This cop does not support autocorrection in the case of ‘EnforcedStyle: hash` where the trailing metadata type is ambiguous. (e.g. `describe ’Something’, :a, b`)

@example EnforcedStyle: symbol (default)

# bad
describe 'Something', a: true

# good
describe 'Something', :a

@example EnforcedStyle: hash

# bad
describe 'Something', :a

# good
describe 'Something', a: true