Sha256: 7bfec5c5cc82ff307074aa29a5a303621b174fad1c25ce00028fc994f174bcd1
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
# frozen_string_literal: true PuppetLint.new_check(:manifest_whitespace_class_opening_curly_brace) do def check (class_indexes + defined_type_indexes).each do |class_idx| class_token = class_idx[:tokens].first brace_token = class_token.next_token_of(:LBRACE) prev_token = brace_token.prev_token prev_code_token = brace_token.prev_token_of(%i[RPAREN NAME FUNCTION_NAME]) next unless prev_code_token next unless tokens.index(prev_code_token) != tokens.index(brace_token) - 2 || !is_single_space(prev_token) notify( :error, message: 'there should be a single space before the opening curly brace of a class body', line: brace_token.line, column: brace_token.column, token: brace_token, ) end end def fix(problem) token = problem[:token] prev_code_token = token.prev_token_of(%i[RPAREN NAME FUNCTION_NAME]).next_token while token != prev_code_token unless %i[WHITESPACE INDENT NEWLINE].include?(prev_code_token.type) raise PuppetLint::NoFix end remove_token(prev_code_token) prev_code_token = prev_code_token.next_token end add_token(tokens.index(token), new_single_space) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
puppet-lint-manifest_whitespace-check-0.1.2 | lib/puppet-lint/plugins/check_manifest_whitespace_class_opening_curly_brace.rb |