Skip to content

Merge tag 'v4.2.8'

Merge tag 'v4.2.8' #64

Triggered via push March 7, 2024 03:38
Status Failure
Total duration 2m 9s
Artifacts

lint-ruby.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

10 errors and 1 warning
lint: app/lib/formatter.rb#L21
[Correctable] Style/IfUnlessModifier: Favor modifier if usage when having a single-line body. Another good alternative is the usage of control flow &&/||. (https://rubystyle.guide#if-as-a-modifier)
lint: app/lib/formatter.rb#L22
Style/StringConcatenation: Prefer string interpolation to string concatenation. (https://rubystyle.guide#string-interpolation)
lint: app/lib/formatter.rb#L55
[Correctable] Style/RegexpLiteral: Use %r around regular expression. (https://rubystyle.guide#percent-r)
lint: app/lib/formatter.rb#L138
Style/OptionalBooleanParameter: Prefer keyword arguments for arguments with a boolean default value; use animate: false instead of animate = false. (https://rubystyle.guide#boolean-keyword-arguments)
lint: app/lib/formatter.rb#L166
[Correctable] Style/SlicingWithRange: Prefer ary[n..] over ary[n..-1].
lint: app/lib/formatter.rb#L212
[Correctable] Style/SlicingWithRange: Prefer ary[n..] over ary[n..-1].
lint: app/lib/formatter.rb#L218
[Correctable] Style/CommentAnnotation: Annotation keywords like Note should be all upper case, followed by a colon, and a space, then a note describing the problem. (https://rubystyle.guide#annotate-keywords)
lint: app/lib/formatter.rb#L277
[Correctable] Style/RegexpLiteral: Use %r around regular expression. (https://rubystyle.guide#percent-r)
lint: app/lib/formatter.rb#L279
[Correctable] Style/SlicingWithRange: Prefer ary[n..] over ary[n..-1].
lint: app/lib/formatter.rb#L280
[Correctable] Style/SlicingWithRange: Prefer ary[n..] over ary[n..-1].
lint: app/lib/formatter.rb#L133
[Correctable] Lint/ElseLayout: Odd else layout detected. Did you mean to use elsif?