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:
# enforce double quotes in string literals
Style/StringLiterals:
EnforcedStyle: double_quotes
EnforcedStyle: double_quotes # default: single_quotes
# enforce double quotes inside string interpolations
Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes
EnforcedStyle: double_quotes # default: single_quotes
# allow only brackets, not %i or %I
Style/SymbolArray:
EnforcedStyle: brackets
MinSize: 1
EnforcedStyle: brackets # default: percent
MinSize: 1 # default: 2
# allow only brackets, not %w or %W
Style/WordArray:
EnforcedStyle: brackets
MinSize: 1
EnforcedStyle: brackets # default: percent
MinSize: 1 # default: 2
# END Style
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment