Sha256: a34866a1d86989f63aaa8f45cb8b572e8d486d51c9714d85c137fe2cc02a17e8
Contents?: true
Size: 1.21 KB
Versions: 6775
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Naming # This cop makes sure that all numbered variables use the # configured style, snake_case, normalcase, or non_integer, # for their numbering. # # @example EnforcedStyle: snake_case # # bad # # variable1 = 1 # # # good # # variable_1 = 1 # # @example EnforcedStyle: normalcase (default) # # bad # # variable_1 = 1 # # # good # # variable1 = 1 # # @example EnforcedStyle: non_integer # # bad # # variable1 = 1 # # variable_1 = 1 # # # good # # variableone = 1 # # variable_one = 1 class VariableNumber < Cop include ConfigurableNumbering MSG = 'Use %<style>s for variable numbers.'.freeze def on_arg(node) name, = *node check_name(node, name, node.loc.name) end alias on_lvasgn on_arg alias on_ivasgn on_arg alias on_cvasgn on_arg private def message(style) format(MSG, style: style) end end end end end
Version data entries
6,775 entries across 6,769 versions & 24 rubygems