# frozen_string_literal: true class BasicSerializer module Config OJ_FORMAT = { mode: :compat, indent: " ", space: " ", # This controls both spaces after commas AND colons space_before: "", # This controls space before colons object_nl: "\n", array_nl: "\n" }.freeze end end