Skip to content
Snippets Groups Projects
Commit d1d6b48b authored by Darius Schneider's avatar Darius Schneider
Browse files

comment rubocop

parent 15ff27d0
No related branches found
No related tags found
No related merge requests found
...@@ -148,19 +148,19 @@ Style/RedundantSelf: ...@@ -148,19 +148,19 @@ Style/RedundantSelf:
# enforce double quotes in string literals # enforce double quotes in string literals
Style/StringLiterals: Style/StringLiterals:
EnforcedStyle: double_quotes EnforcedStyle: double_quotes # default: single_quotes
# enforce double quotes inside string interpolations # enforce double quotes inside string interpolations
Style/StringLiteralsInInterpolation: Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes EnforcedStyle: double_quotes # default: single_quotes
# allow only brackets, not %i or %I # allow only brackets, not %i or %I
Style/SymbolArray: Style/SymbolArray:
EnforcedStyle: brackets EnforcedStyle: brackets # default: percent
MinSize: 1 MinSize: 1 # default: 2
# allow only brackets, not %w or %W # allow only brackets, not %w or %W
Style/WordArray: Style/WordArray:
EnforcedStyle: brackets EnforcedStyle: brackets # default: percent
MinSize: 1 MinSize: 1 # default: 2
# END Style # END Style
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment