Sha256: 27cbddbf7ad69a23ab6bdfbad5a5611a86422253490b8cc99f22c6b047f390ab
Contents?: true
Size: 1.38 KB
Versions: 13
Compression:
Stored size: 1.38 KB
Contents
# frozen_string_literal: true # # Copyright:: 2019, Chef Software Inc. # Author:: Tim Smith (<tsmith@chef.io>) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # module RuboCop module Cop module Chef module ChefSharing # metadata.rb should not include fields with an empty string. Either don't include the field or add a value. # # @example # # # bad # license '' # # # good # license 'Apache-2.0' # class EmptyMetadataField < Base MSG = 'Cookbook metadata.rb contains a field with an empty string.' def_node_matcher :field?, '(send nil? _ $str ...)' def on_send(node) field?(node) do |str| return unless str.value.empty? add_offense(str, message: MSG, severity: :refactor) end end end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems