I created a new migration, it looks like this one:
class AddCommentsToUsers < ActiveRecord::Migration
  def change
    add_column :users, :comments, :text
  end
end
Now with Code Climate I am warned of an issue:
Missing frozen string literal comment.
I tried to fix it like this:
# frozen_string_literal: true
class AddCommentsToUsers < ActiveRecord::Migration
  def change
    add_column :users, :comments, :text
  end
end
But I still have the same issue. How can I solve it? Thanks.
I experienced the same problem. Rubocop was working fine before but suddenly it started acting up. I read through their configuration options on github and saw the particular property that is messing with your code. The property can be found here: FrozenStringLiteral.
To silence this warning, you only need to add this to your rubocop.yml file
Style/FrozenStringLiteralComment:
  Enabled: false
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With