Class: RuboCop::OptionsValidator
- Inherits:
-
Object
- Object
- RuboCop::OptionsValidator
- Defined in:
- lib/rubocop/options.rb
Overview
Validates option arguments and the options’ compatibility with each other.
Class Method Summary collapse
-
.validate_cop_list(names) ⇒ Object
Cop name validation must be done later than option parsing, so it’s not called from within Options.
Instance Method Summary collapse
- #boolean_or_empty_cache? ⇒ Boolean
- #display_only_fail_level_offenses_with_autocorrect? ⇒ Boolean
- #except_syntax? ⇒ Boolean
- #incompatible_options ⇒ Object
-
#initialize(options) ⇒ OptionsValidator
constructor
A new instance of OptionsValidator.
- #only_includes_unneeded_disable? ⇒ Boolean
- #validate_auto_gen_config ⇒ Object
-
#validate_compatibility ⇒ Object
rubocop:disable Metrics/MethodLength.
- #validate_exclude_limit_option ⇒ Object
- #validate_parallel ⇒ Object
- #validate_parallel_with_combo_option ⇒ Object
Constructor Details
#initialize(options) ⇒ OptionsValidator
Returns a new instance of OptionsValidator.
251 252 253 |
# File 'lib/rubocop/options.rb', line 251 def initialize() @options = end |
Class Method Details
.validate_cop_list(names) ⇒ Object
Cop name validation must be done later than option parsing, so it’s not called from within Options.
217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'lib/rubocop/options.rb', line 217 def validate_cop_list(names) return unless names cop_names = Cop::Cop.registry.names departments = Cop::Cop.registry.departments.map(&:to_s) names.each do |name| next if cop_names.include?(name) next if departments.include?(name) next if %w[Syntax Lint/Syntax].include?(name) raise IncorrectCopNameError, (name, cop_names) end end |
Instance Method Details
#boolean_or_empty_cache? ⇒ Boolean
335 336 337 |
# File 'lib/rubocop/options.rb', line 335 def boolean_or_empty_cache? !@options.key?(:cache) || %w[true false].include?(@options[:cache]) end |
#display_only_fail_level_offenses_with_autocorrect? ⇒ Boolean
326 327 328 |
# File 'lib/rubocop/options.rb', line 326 def display_only_fail_level_offenses_with_autocorrect? @options[:display_only_fail_level_offenses] && @options[:autocorrect] end |
#except_syntax? ⇒ Boolean
330 331 332 333 |
# File 'lib/rubocop/options.rb', line 330 def except_syntax? @options.key?(:except) && (@options[:except] & %w[Lint/Syntax Syntax]).any? end |
#incompatible_options ⇒ Object
339 340 341 |
# File 'lib/rubocop/options.rb', line 339 def @incompatible_options ||= @options.keys & Options::EXITING_OPTIONS end |
#only_includes_unneeded_disable? ⇒ Boolean
320 321 322 323 324 |
# File 'lib/rubocop/options.rb', line 320 def only_includes_unneeded_disable? @options.key?(:only) && (@options[:only] & %w[Lint/UnneededCopDisableDirective UnneededCopDisableDirective]).any? end |
#validate_auto_gen_config ⇒ Object
280 281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'lib/rubocop/options.rb', line 280 def validate_auto_gen_config return if @options.key?(:auto_gen_config) = '--%<flag>s can only be used together with --auto-gen-config.' %i[exclude_limit no_offense_counts no_auto_gen_timestamp auto_gen_only_exclude].each do |option| if @options.key?(option) raise OptionArgumentError, format(, flag: option.to_s.tr('_', '-')) end end end |
#validate_compatibility ⇒ Object
rubocop:disable Metrics/MethodLength
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
# File 'lib/rubocop/options.rb', line 255 def validate_compatibility # rubocop:disable Metrics/MethodLength if only_includes_unneeded_disable? raise OptionArgumentError, 'Lint/UnneededCopDisableDirective can not ' \ 'be used with --only.' end if except_syntax? raise OptionArgumentError, 'Syntax checking can not be turned off.' end unless boolean_or_empty_cache? raise OptionArgumentError, '-C/--cache argument must be true or false' end if display_only_fail_level_offenses_with_autocorrect? raise OptionArgumentError, '--autocorrect can not be used with ' \ '--display-only-fail-level-offenses' end validate_auto_gen_config validate_parallel return if .size <= 1 raise OptionArgumentError, 'Incompatible cli options: ' \ "#{.inspect}" end |
#validate_exclude_limit_option ⇒ Object
343 344 345 346 347 348 349 |
# File 'lib/rubocop/options.rb', line 343 def validate_exclude_limit_option return if @options[:exclude_limit] =~ /^\d+$/ # Emulate OptionParser's behavior to make failures consistent regardless # of option order. raise OptionParser::MissingArgument end |
#validate_parallel ⇒ Object
294 295 296 297 298 299 300 301 302 303 304 |
# File 'lib/rubocop/options.rb', line 294 def validate_parallel return unless @options.key?(:parallel) if @options[:cache] == 'false' raise OptionArgumentError, '-P/--parallel uses caching to speed up ' \ 'execution, so combining with --cache ' \ 'false is not allowed.' end validate_parallel_with_combo_option end |
#validate_parallel_with_combo_option ⇒ Object
306 307 308 309 310 311 312 313 314 315 316 317 318 |
# File 'lib/rubocop/options.rb', line 306 def validate_parallel_with_combo_option combos = { auto_gen_config: '-P/--parallel uses caching to speed up execution, ' \ 'while --auto-gen-config needs a non-cached run, ' \ 'so they cannot be combined.', fail_fast: '-P/--parallel can not be combined with -F/--fail-fast.', auto_correct: '-P/--parallel can not be combined with --auto-correct.' } combos.each do |key, msg| raise OptionArgumentError, msg if @options.key?(key) end end |