prontolabs/pronto

View on GitHub
lib/pronto/formatter/null_formatter.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Pronto
  module Formatter
    class NullFormatter < Base
      def self.name
        'null'
      end

      def format(_messages, _repo, _patches); end
    end
  end
end

Pronto::Formatter.register(Pronto::Formatter::NullFormatter)