mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 13:09:59 +00:00

Enables frozen for the following: * lib/*.rb * lib/banzai/**/*.rb * lib/bitbucket/**/*.rb * lib/constraints/**/*.rb * lib/container_registry/**/*.rb * lib/declarative_policy/**/*.rb Partially addresses #47424.
9 lines
163 B
Ruby
9 lines
163 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Banzai
|
|
module Pipeline
|
|
class FullPipeline < CombinedPipeline.new(PlainMarkdownPipeline, GfmPipeline)
|
|
end
|
|
end
|
|
end
|