Skip to content

Commit

Permalink
Linting Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Yash-Singh-Pathania committed Oct 4, 2024
1 parent e3f5d6b commit 4521f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/dummy/app/models/user.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class User < ApplicationRecord
extend FriendlyId
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
devise :database_authenticatable, :registerable,
devise :database_authenticatable, :registerable,

Check failure on line 26 in spec/dummy/app/models/user.rb

View workflow job for this annotation

GitHub Actions / lint / runner / standardrb

[rubocop] reported by reviewdog 🐶 [Corrected] Layout/ExtraSpacing: Unnecessary spacing detected. Raw Output: spec/dummy/app/models/user.rb:26:9: C: [Corrected] Layout/ExtraSpacing: Unnecessary spacing detected. devise :database_authenticatable, :registerable, ^
:recoverable, :rememberable, :validatable

Check failure on line 27 in spec/dummy/app/models/user.rb

View workflow job for this annotation

GitHub Actions / lint / runner / standardrb

[rubocop] reported by reviewdog 🐶 [Corrected] Layout/ArgumentAlignment: Use one level of indentation for arguments following the first line of a multi-line method call. Raw Output: spec/dummy/app/models/user.rb:27:11: C: [Corrected] Layout/ArgumentAlignment: Use one level of indentation for arguments following the first line of a multi-line method call. :recoverable, :rememberable, :validatable ^^^^^^^^^^^^

validates :first_name, presence: true
Expand Down

0 comments on commit 4521f26

Please sign in to comment.