Skip to content

Commit 88835cf

Browse files
committed
rubocop: Fix Style/FrozenStringLiteralComment
1 parent e37a8de commit 88835cf

File tree

4 files changed

+6
-11
lines changed

4 files changed

+6
-11
lines changed

.rubocop_todo.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,6 @@ Style/EmptyElse:
5454
Exclude:
5555
- 'lib/puppet-lint/plugins/check_strict_indent.rb'
5656

57-
# Offense count: 3
58-
# This cop supports unsafe autocorrection (--autocorrect-all).
59-
# Configuration parameters: EnforcedStyle.
60-
# SupportedStyles: always, always_true, never
61-
Style/FrozenStringLiteralComment:
62-
Exclude:
63-
- '**/*.arb'
64-
- 'lib/puppet-lint/plugins/check_strict_indent.rb'
65-
- 'puppet-lint-strict_indent-check.gemspec'
66-
- 'spec/puppet-lint/plugins/check_strict_indent_spec.rb'
67-
6857
# Offense count: 4
6958
Style/MultilineBlockChain:
7059
Exclude:

lib/puppet-lint/plugins/check_strict_indent.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
# Public: Check the manifest tokens for correct indent levels and
24
# record a warning for each instance found.
35

puppet-lint-strict_indent-check.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
Gem::Specification.new do |spec|
24
spec.name = 'puppet-lint-strict_indent-check'
35
spec.version = '5.0.0'

spec/puppet-lint/plugins/check_strict_indent_spec.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe 'strict_indent' do

0 commit comments

Comments
 (0)