class RuboCop::Cop::Naming::AsciiIdentifiers

def should_check?(token)

def should_check?(token)
  token.type == :tIDENTIFIER || (token.type == :tCONSTANT && cop_config['AsciiConstants'])
end