Welcome to mirror list, hosted at ThFree Co, Russian Federation.

file_collection.rb « diff « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce6717c7205a14e2aee4ff2da8b141488b29514b (plain)
1
2
3
4
5
6
7
8
9
module Gitlab
  module Diff
    module FileCollection
      def self.default_options
        ::Commit.max_diff_options.merge(ignore_whitespace_change: false, no_collapse: false)
      end
    end
  end
end