-
Notifications
You must be signed in to change notification settings - Fork 0
bs #2
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
base: main
Are you sure you want to change the base?
bs #2
Changes from all commits
21dc4fe
47c952c
b7250a7
0d8e438
449e0bc
72e4b42
3684185
da554e4
481f70b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| runner: | ||
| # examples | ||
| golint: | ||
| cmd: golint ./... | ||
| errorformat: | ||
| - "%f:%l:%c: %m" | ||
| level: warning | ||
| govet: | ||
| cmd: go vet -all . | ||
| format: govet | ||
| your-awesome-linter: | ||
| cmd: awesome-linter run | ||
| format: rdjson | ||
| name: AwesomeLinter |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,10 +1,14 @@ | ||||||
| class Sample | ||||||
| def hello | ||||||
| puts "Hello Ruby!" | ||||||
| puts "brahms" | ||||||
| puts 'jji' | ||||||
| end | ||||||
| end | ||||||
|
|
||||||
| # Now using above class to create objects | ||||||
| object = Sample. new | ||||||
| object.hello | ||||||
| puts "brhms" | ||||||
| puts "hhiD" | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Suggested change
|
||||||
| puts "sjk" | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Suggested change
|
||||||
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] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.