# File typeprof-0.12.0/lib/typeprof/config.rb, line 26 def initialize(**opt) opt[:output] ||= $stdout opt[:gem_rbs_features] ||= [] opt[:gem_repo_dirs] ||= [] opt[:dir_filter] ||= DEFAULT_DIR_FILTER opt[:verbose] ||= 0 opt[:options] ||= {} opt[:options] = { exclude_untyped: false, show_typeprof_version: true, show_indicator: true, show_untyped: false, show_errors: false, show_parameter_names: true, show_source_locations: false, stub_execution: true, type_depth_limit: 5, stackprof: nil, }.merge(opt[:options]) super(**opt) end