Skip to content

Commit

Permalink
fix rubocop offenses
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed Dec 11, 2023
1 parent a9b3cd1 commit 45882e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ Style/MethodCallWithArgsParentheses:
AllowParenthesesInChaining: true
EnforcedStyle: omit_parentheses

Style/SuperWithArgsParentheses:
Enabled: false

Style/Documentation:
Enabled: false

Expand Down
2 changes: 1 addition & 1 deletion app/models/issue_view_column.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
class IssueViewColumn < ActiveRecord::Base
belongs_to :project

scope :sorted, (-> { order :position })
scope :sorted, -> { order :position }
end

0 comments on commit 45882e2

Please sign in to comment.