Sha256: 4fc52c53bc177e74474bcb4a0e8a4dbb990b7cea4dcaa22e758d1d780498dc14
Contents?: true
Size: 718 Bytes
Versions: 246
Compression:
Stored size: 718 Bytes
Contents
# Configures validation suitable for the bindings model # @api public # class Puppet::Pops::Binder::BindingsValidatorFactory < Puppet::Pops::Validation::Factory Issues = Puppet::Pops::Binder::BinderIssues # Produces the checker to use def checker diagnostic_producer Puppet::Pops::Binder::BindingsChecker.new(diagnostic_producer) end # Produces the label provider to use def label_provider Puppet::Pops::Binder::BindingsLabelProvider.new() end # Produces the severity producer to use def severity_producer p = super # Configure each issue that should **not** be an error # p[Issues::MISSING_BINDINGS] = :warning p[Issues::MISSING_LAYERS] = :warning p end end
Version data entries
246 entries across 246 versions & 2 rubygems