class Rufo::Formatter

def init_settings(options)

def init_settings(options)
  indent_size                  options.fetch(:indent_size,                  2)
  spaces_inside_hash_brace     options.fetch(:spaces_inside_hash_brace,     :dynamic)
  spaces_inside_array_bracket  options.fetch(:spaces_inside_array_bracket,  :dynamic)
  spaces_around_equal          options.fetch(:spaces_around_equal,          :dynamic)
  spaces_in_ternary            options.fetch(:spaces_in_ternary,            :dynamic)
  spaces_in_suffix             options.fetch(:spaces_in_suffix,             :dynamic)
  spaces_in_commands           options.fetch(:spaces_in_commands,           :dynamic)
  spaces_around_block_brace    options.fetch(:spaces_around_block_brace,    :dynamic)
  spaces_after_comma           options.fetch(:spaces_after_comma,           :dynamic)
  spaces_around_hash_arrow     options.fetch(:spaces_around_hash_arrow,     :dynamic)
  spaces_around_when           options.fetch(:spaces_around_when,           :dynamic)
  spaces_around_dot            options.fetch(:spaces_around_dot,            :dynamic)
  spaces_after_lambda_arrow    options.fetch(:spaces_after_lambda_arrow,    :dynamic)
  spaces_around_unary          options.fetch(:spaces_around_unary,          :dynamic)
  spaces_around_binary         options.fetch(:spaces_around_binary,         :dynamic)
  spaces_after_method_name     options.fetch(:spaces_after_method_name,     :dynamic)
  spaces_in_inline_expressions options.fetch(:spaces_in_inline_expressions, :dynamic)
  parens_in_def                options.fetch(:parens_in_def,                :dynamic)
  double_newline_inside_type   options.fetch(:double_newline_inside_type,   :dynamic)
  visibility_indent            options.fetch(:visibility_indent,            :dynamic)
  align_comments               options.fetch(:align_comments,               false)
  align_assignments            options.fetch(:align_assignments,            false)
  align_hash_keys              options.fetch(:align_hash_keys,              false)
  align_case_when              options.fetch(:align_case_when,              false)
  align_chained_calls          options.fetch(:align_chained_calls,          false)
  trailing_commas              options.fetch(:trailing_commas,              :dynamic)
end