3
0

More than 3 years have passed since last update.

[ERROR rubocop] Layout/TrailingEmptyLines: Final newline missing.

Posted at

bundle exec rubocop したら以下のようなエラーが発生しました。
最終改行がありません、というエラーのようです。

app/controllers/users_controller.rb:10:4: C: [Correctable] Layout/TrailingEmptyLines: Final newline missing.

私の場合 users_controller.rb の10行目にエラーが起きています。
最後の end の下に改行が必要なので1行改行を入れてあげると解決します。

class UsersController < ApplicationController

...

end  ←ここ
3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0