Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Fetch all needed commits for ci workflow #8

Fetch all needed commits for ci workflow

Fetch all needed commits for ci workflow #8

GitHub Actions / rubocop failed May 2, 2024 in 1s

reviewdog [rubocop] report

reported by reviewdog 🐶

Findings (11)

test/rdjson_formatter/testdata/correctable_offenses.rb|1 col 1| Missing frozen string literal comment.
test/rdjson_formatter/testdata/correctable_offenses.rb|1 col 12| Space missing after comma.
test/rdjson_formatter/testdata/correctable_offenses.rb|2 col 4| Unnecessary spacing detected.
test/rdjson_formatter/testdata/correctable_offenses.rb|2 col 13| Surrounding space missing for operator +.
test/rdjson_formatter/testdata/correctable_offenses.rb|2 col 14| Unnecessary spacing detected.
test/rdjson_formatter/testdata/correctable_offenses.rb|2 col 20| Do not use semicolons to terminate expressions.
test/rdjson_formatter/testdata/correctable_offenses.rb|3 col 3| Redundant return detected.
test/rdjson_formatter/testdata/correctable_offenses.rb|3 col 9| Unnecessary spacing detected.
test/rdjson_formatter/testdata/not_correctable_offenses.rb|4 col 15| Method parameter must be at least 3 characters long.
test/rdjson_formatter/testdata/not_correctable_offenses.rb|4 col 18| Method parameter must be at least 3 characters long.
test/rdjson_formatter/testdata/not_correctable_offenses.rb|5 col 5| Useless assignment to variable - c.

Filtered Findings (0)

Annotations

Check notice on line 1 in test/rdjson_formatter/testdata/correctable_offenses.rb

See this annotation in the file changed.

@github-actions github-actions / rubocop

[rubocop] test/rdjson_formatter/testdata/correctable_offenses.rb#L1 <Style/FrozenStringLiteralComment>

Missing frozen string literal comment.
Raw output
test/rdjson_formatter/testdata/correctable_offenses.rb:1:1: C: Style/FrozenStringLiteralComment: Missing frozen string literal comment.

Check notice on line 1 in test/rdjson_formatter/testdata/correctable_offenses.rb

See this annotation in the file changed.

@github-actions github-actions / rubocop

[rubocop] test/rdjson_formatter/testdata/correctable_offenses.rb#L1 <Layout/SpaceAfterComma>

Space missing after comma.
Raw output
test/rdjson_formatter/testdata/correctable_offenses.rb:1:12: C: Layout/SpaceAfterComma: Space missing after comma.

Check notice on line 2 in test/rdjson_formatter/testdata/correctable_offenses.rb

See this annotation in the file changed.

@github-actions github-actions / rubocop

[rubocop] test/rdjson_formatter/testdata/correctable_offenses.rb#L2 <Layout/ExtraSpacing>

Unnecessary spacing detected.
Raw output
test/rdjson_formatter/testdata/correctable_offenses.rb:2:4: C: Layout/ExtraSpacing: Unnecessary spacing detected.

Check notice on line 2 in test/rdjson_formatter/testdata/correctable_offenses.rb

See this annotation in the file changed.

@github-actions github-actions / rubocop

[rubocop] test/rdjson_formatter/testdata/correctable_offenses.rb#L2 <Layout/SpaceAroundOperators>

Surrounding space missing for operator `+`.
Raw output
test/rdjson_formatter/testdata/correctable_offenses.rb:2:13: C: Layout/SpaceAroundOperators: Surrounding space missing for operator `+`.

Check notice on line 2 in test/rdjson_formatter/testdata/correctable_offenses.rb

See this annotation in the file changed.

@github-actions github-actions / rubocop

[rubocop] test/rdjson_formatter/testdata/correctable_offenses.rb#L2 <Layout/ExtraSpacing>

Unnecessary spacing detected.
Raw output
test/rdjson_formatter/testdata/correctable_offenses.rb:2:14: C: Layout/ExtraSpacing: Unnecessary spacing detected.

Check notice on line 2 in test/rdjson_formatter/testdata/correctable_offenses.rb

See this annotation in the file changed.

@github-actions github-actions / rubocop

[rubocop] test/rdjson_formatter/testdata/correctable_offenses.rb#L2 <Style/Semicolon>

Do not use semicolons to terminate expressions.
Raw output
test/rdjson_formatter/testdata/correctable_offenses.rb:2:20: C: Style/Semicolon: Do not use semicolons to terminate expressions.

Check notice on line 3 in test/rdjson_formatter/testdata/correctable_offenses.rb

See this annotation in the file changed.

@github-actions github-actions / rubocop

[rubocop] test/rdjson_formatter/testdata/correctable_offenses.rb#L3 <Style/RedundantReturn>

Redundant `return` detected.
Raw output
test/rdjson_formatter/testdata/correctable_offenses.rb:3:3: C: Style/RedundantReturn: Redundant `return` detected.

Check notice on line 3 in test/rdjson_formatter/testdata/correctable_offenses.rb

See this annotation in the file changed.

@github-actions github-actions / rubocop

[rubocop] test/rdjson_formatter/testdata/correctable_offenses.rb#L3 <Layout/ExtraSpacing>

Unnecessary spacing detected.
Raw output
test/rdjson_formatter/testdata/correctable_offenses.rb:3:9: C: Layout/ExtraSpacing: Unnecessary spacing detected.

Check notice on line 4 in test/rdjson_formatter/testdata/not_correctable_offenses.rb

See this annotation in the file changed.

@github-actions github-actions / rubocop

[rubocop] test/rdjson_formatter/testdata/not_correctable_offenses.rb#L4 <Naming/MethodParameterName>

Method parameter must be at least 3 characters long.
Raw output
test/rdjson_formatter/testdata/not_correctable_offenses.rb:4:15: C: Naming/MethodParameterName: Method parameter must be at least 3 characters long.

Check notice on line 4 in test/rdjson_formatter/testdata/not_correctable_offenses.rb

See this annotation in the file changed.

@github-actions github-actions / rubocop

[rubocop] test/rdjson_formatter/testdata/not_correctable_offenses.rb#L4 <Naming/MethodParameterName>

Method parameter must be at least 3 characters long.
Raw output
test/rdjson_formatter/testdata/not_correctable_offenses.rb:4:18: C: Naming/MethodParameterName: Method parameter must be at least 3 characters long.

Check warning on line 5 in test/rdjson_formatter/testdata/not_correctable_offenses.rb

See this annotation in the file changed.

@github-actions github-actions / rubocop

[rubocop] test/rdjson_formatter/testdata/not_correctable_offenses.rb#L5 <Lint/UselessAssignment>

Useless assignment to variable - `c`.
Raw output
test/rdjson_formatter/testdata/not_correctable_offenses.rb:5:5: W: Lint/UselessAssignment: Useless assignment to variable - `c`.