stefan-kolb/nucleus

View on GitHub
lib/nucleus_api/ext/lint.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Rack
  class Lint
    def check_status(_status)
      # allow any kind of HTTP status, especially the -1 that is used by rack-stream to serve chunked requests
      true
    end
  end
end