ifmeorg/ifme

View on GitHub

Showing 77 of 131 total issues

Favor modifier if usage when having a single-line body. Another good alternative is the usage of control flow &&/||.
Open

if params[:category].present? && @strategy.new_record? && !checked

Prefer string interpolation to string concatenation.
Open

' | ' + t('account.forgot_password')
Severity: Minor
Found in app/helpers/application_helper.rb by rubocop

Remove explicit presence validation for user_id.
Open

:total_unit, :strength_unit, presence: true
Severity: Minor
Found in app/models/medication.rb by rubocop

Use find_each instead of each.
Open

Strategy.all.each do |strategy|
Severity: Minor
Found in lib/tasks/cleaner.rake by rubocop

Useless method definition detected.
Open

def new
super
end

Prefer string interpolation to string concatenation.
Open

' | ' + t('devise.invitations.new.header')
Severity: Minor
Found in app/helpers/application_helper.rb by rubocop

Remove explicit presence validation for user_id.
Open

validates :user_id, :uniqueid, :data, presence: true
Severity: Minor
Found in app/models/notification.rb by rubocop

Use find_each instead of each.
Open

.each do |dr|

Parsing error: This experimental syntax requires enabling one of the following parser plugin(s): 'flow, typescript' (3:7)
Open

export type Link = {

Prefer string interpolation to string concatenation.
Open

' | ' + t('account.singular')
Severity: Minor
Found in app/helpers/application_helper.rb by rubocop

Rails.public_path is a Pathname so you can just append #read.
Open

File.read(Rails.public_path.join(asset_path(path)))
Severity: Minor
Found in app/helpers/assets_helper.rb by rubocop

Prefer keyword arguments for arguments with a boolean default value; use edit: false instead of edit = false.
Open

def strategy_form_inputs(strategy, viewers, edit = false)
Severity: Minor
Found in app/helpers/strategies_helper.rb by rubocop

Pass &:downcase as an argument to sort_by! instead of a block.
Open

item['locations']&.sort_by! { |location| location.downcase }

Duplicate branch body detected.
Open

rescue Google::Apis::ServerError => e
[false, e.message]

Use find_each instead of each.
Open

Strategy.where(user: @viewers).each do |strategy|

Prefer string interpolation to string concatenation.
Open

' | ' + t('app_description')
Severity: Minor
Found in app/helpers/application_helper.rb by rubocop

Convert if-elsif to case-when.
Open

if data_type == 'moods'
item.moods.pluck(:id)
elsif data_type == 'categories'
item.categories.pluck(:id)
elsif data_type == 'strategies'
Severity: Minor
Found in app/helpers/most_focus_helper.rb by rubocop

Remove explicit presence validation for user_id.
Open

validates :user_id, :name, presence: true
Severity: Minor
Found in app/models/category.rb by rubocop

Omit the hash value.
Open

checked: checked

Remove explicit presence validation for reporter_id.
Open

validates :reporter_id, presence: true
Severity: Minor
Found in app/models/report.rb by rubocop
Severity
Category
Status
Source
Language