class Standard::Runners::Rubocop

def without_parallelizing_in_stdin_mode(options)

https://github.com/standardrb/standard/issues/536
interact when invoked in this way. See:
This is a workaround for an issue with how `parallel` and `stdin`
def without_parallelizing_in_stdin_mode(options)
  if options[:stdin]
    options.delete(:parallel)
  end
  options
end