# File lib/yard/config.rb, line 118
    def self.load
      self.options = SymbolHash.new(false)
      options.update(DEFAULT_CONFIG_OPTIONS)
      options.update(read_config_file)
      load_commandline_safemode
      add_ignored_plugins_file
      translate_plugin_names
      load_plugins
    rescue
      log.error "Invalid configuration file, using default options."
      options.update(DEFAULT_CONFIG_OPTIONS)
    end