We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
# Bad class HogeHogeJob < ApplicationJob def initilize Slackに通知 super end def perform ~~~ end end # good class HogeHogeJob < ApplicationJob before_perfrom -> { Slackに通知 } def perform ~~~ end end # good class HogeHogeJob < ApplicationJob def perform Slackに通知 ~~~ end end
あまり実装する人が少ないCOPでもPR出しても大丈夫でしょうか
The text was updated successfully, but these errors were encountered:
作ったもの kyohah/rubocop-rails@8bee09a
Sorry, something went wrong.
ユーザーが bad と good への背景をより掴みやすくするためのテキストを加えて、まず Rails Style Guide の方へのスタイルガイドとして提案をしてみて頂けないでしょうか? https://github.com/rubocop/rails-style-guide
そちらがとおったら RuboCop Rails の方に PR を開いてください。実装へのフィードバックはその際に行います。
No branches or pull requests
あまり実装する人が少ないCOPでもPR出しても大丈夫でしょうか
The text was updated successfully, but these errors were encountered: