-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rubocop x reviewdog x GitHub Actions #16
base: main
Are you sure you want to change the base?
Conversation
b12d118
to
bb4adc7
Compare
@@ -0,0 +1,3 @@ | |||
source 'https://rubygems.org' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[rubocop] reported by reviewdog 🐶
Style/FrozenStringLiteralComment: Missing frozen string literal comment.
@@ -0,0 +1,4 @@ | |||
puts "xxx" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[rubocop] reported by reviewdog 🐶
Naming/FileName: The name of this source file (ruboco-offense-test.rb) should use snake_case.
@@ -0,0 +1,4 @@ | |||
puts "xxx" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[rubocop] reported by reviewdog 🐶
Style/FrozenStringLiteralComment: Missing frozen string literal comment.
@@ -0,0 +1,4 @@ | |||
puts "xxx" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[rubocop] reported by reviewdog 🐶
Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols.
@@ -0,0 +1,4 @@ | |||
puts "xxx" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[rubocop] reported by reviewdog 🐶
Layout/TrailingWhitespace: Trailing whitespace detected.
@@ -0,0 +1,4 @@ | |||
puts "xxx" | |||
|
|||
a = 1 + "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[rubocop] reported by reviewdog 🐶
Lint/UselessAssignment: Useless assignment to variable - a.
@@ -0,0 +1,4 @@ | |||
puts "xxx" | |||
|
|||
a = 1 + "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[rubocop] reported by reviewdog 🐶
Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols.
puts "xxx" | ||
|
||
a = 1 + "" | ||
x = y + 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[rubocop] reported by reviewdog 🐶
Lint/UselessAssignment: Useless assignment to variable - x.
No description provided.