module YamlLint

YamlLint checks YAML files for correct syntax

YamlLint checks YAML files for correct syntax

Constants

VERSION

Public Class Methods

logger() click to toggle source
# File lib/yamllint.rb, line 10
def self.logger
  @logger ||= Logger.new(STDOUT).tap do |l|
    l.level = Logger::INFO
  end
end