Skip to content

Commit 956450a

Browse files
committed
Update RuboCop Style/PercentLiteralDelimiters cop config values
Applies this [change][] in our styleguide config. [change]: codeclimate/styleguide#40
1 parent 20c5435 commit 956450a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

base_rubocop.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,10 @@ Style/PredicateName:
7171
# We use %w[ ], not %w( ) because the former looks like an array
7272
Style/PercentLiteralDelimiters:
7373
PreferredDelimiters:
74-
"%w": []
75-
"%W": []
74+
"%i": "[]"
75+
"%I": "[]"
76+
"%w": "[]"
77+
"%W": "[]"
7678

7779
# Allow "trivial" accessors when defined as a predicate? method
7880
Style/TrivialAccessors:

0 commit comments

Comments
 (0)