Skip to content

Commit

Permalink
rubocop: enable Style/LineEndConcatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Dec 28, 2023
1 parent b1ab5a8 commit 8a72ec8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
6 changes: 0 additions & 6 deletions .rubocop.yml
Expand Up @@ -36,12 +36,6 @@ Style/Documentation:
Style/FrozenStringLiteralComment:
Enabled: false

# Offense count: 2
# Cop supports --auto-correct.
Style/LineEndConcatenation:
Exclude:
- 'src/modules/Autologin.rb'

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle.
Expand Down
6 changes: 3 additions & 3 deletions src/modules/Autologin.rb
Expand Up @@ -160,9 +160,9 @@ def AskForDisabling(new)
# like "Now LDAP was enabled")
question = Builtins.sformat(
_(
"The automatic login feature is enabled for user %1.\n" +
"%2\n" +
"Disable automatic login?"
"The automatic login feature is enabled for user %1.\n" \
"%2\n" \
"Disable automatic login?"
),
@user,
new
Expand Down

0 comments on commit 8a72ec8

Please sign in to comment.