summaryrefslogtreecommitdiff
path: root/tooling/danger/weightage.rb
blob: cf8d17410dca20bfd39a3ffb61e468deff16cf35 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Tooling
  module Danger
    module Weightage
      CAPACITY_MULTIPLIER = 2 # change this number to change what it means to be a reduced capacity reviewer 1/this number
      BASE_REVIEWER_WEIGHT = 1
    end
  end
end