Sha256: 131baada081dc72b3320b6d5a58efa973eb6dd8fa5ea01c8b9754df1da67227a
Contents?: true
Size: 644 Bytes
Versions: 13
Compression:
Stored size: 644 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop # This module encapsulates the logic for autocorrect behavior for a cop. module AutocorrectLogic def autocorrect? autocorrect_requested? && support_autocorrect? && autocorrect_enabled? end def autocorrect_requested? @options.fetch(:auto_correct, false) end def support_autocorrect? respond_to?(:autocorrect) end def autocorrect_enabled? # allow turning off autocorrect on a cop by cop basis return true unless cop_config cop_config['AutoCorrect'] != false end end end end
Version data entries
13 entries across 13 versions & 2 rubygems