We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b028af7 + 3e3f41b commit 683ecb5Copy full SHA for 683ecb5
lib/puppet-lint/plugins/check_whitespace/140chars.rb
@@ -7,7 +7,7 @@
7
PuppetLint.new_check(:'140chars') do
8
def check
9
manifest_lines.each_with_index do |line, idx|
10
- result = PuppetLint::LineLengthCheck.check(idx+1, line, 140)
+ result = PuppetLint::LineLengthCheck.check(idx + 1, line, 140)
11
12
next if result.nil?
13
notify(*result)
lib/puppet-lint/plugins/check_whitespace/80chars.rb
@@ -6,7 +6,7 @@
6
PuppetLint.new_check(:'80chars') do
- result = PuppetLint::LineLengthCheck.check(idx+1, line, 80)
+ result = PuppetLint::LineLengthCheck.check(idx + 1, line, 80)
0 commit comments