10

我创建了一个新的迁移,它看起来像这样:

class AddCommentsToUsers < ActiveRecord::Migration
  def change
    add_column :users, :comments, :text
  end
end

现在有了代码气候,我被警告一个问题: Missing frozen string literal comment.

我试图像这样修复它:

# frozen_string_literal: true
class AddCommentsToUsers < ActiveRecord::Migration
  def change
    add_column :users, :comments, :text
  end
end

但我仍然有同样的问题。我该如何解决?谢谢。

4

1 回答 1

8

我遇到了同样的问题。Rubocop 之前工作正常,但突然开始出现问题。我在 github 上阅读了他们的配置选项,并看到了与您的代码混淆的特定属性。可以在此处找到该属性:FrozenStringLiteral

要消除此警告,您只需将其添加到您的rubocop.yml文件中

Style/FrozenStringLiteralComment:
  Enabled: false
于 2016-07-27T23:27:53.290 回答