Method: RuboCop::ConfigValidator#validate_after_resolution

Defined in:
lib/rubocop/config_validator.rb

#validate_after_resolutionObject

Validations that should only be run after all config resolving has taken place:

  • The target ruby version is only checked once the entire inheritance

chain has been loaded so that only the final value is validated, and any obsolete but overridden values are ignored.



61
62
63
# File 'lib/rubocop/config_validator.rb', line 61

def validate_after_resolution
  check_target_ruby
end