NAME
Perl::Critic::Policy::CodeLayout::ProhibitHashBarewords
AFFILIATION
This policy is part of Perl::Critic::Itch.
VERSION
1.0
SYNOPSIS
Requires backticks on all hash keys barewords
DESCRIPTION
When using a bareword as a hash key, we should always use backtips to mode the code more legible.
Things as $my_elem{some_bareword} should be writen as $my_elem{'some_bareword'}
INTERFACE
Stadard for a Perl::Critic::Policy.
DIAGNOSTICS
None.