前提・実現したいこと
下記のrubocopの検出エラーを除外するためにconfig/.rubocop.ymlにどのように記述するかをご教示いただけますでしょうか。
1.Missing top-level class documentation comment.
2.Use only ascii symbols in comments.
3.include is used at the top level. Use inside class or module.
発生している問題・エラーメッセージ
ruby
1app/models/favorite.rb:three:1: C: Style/Documentation: Missing top-level class documentation comment. 2class Favorite < ApplicationRecord 3^^^^^ 4 5app/models/favorite.rb:six:28: C: Style/AsciiComments: Use only ascii symbols in comments. 6# validates_uniqueness_ofは、post_idとuser_idの組み合わせがユニークになるように制限をかけることができる 7 8bin/update:five:1: C: Style/MixinUsage: include is used at the top level. Use inside class or module. 9include FileUtils 10^^^^^^^^^^^^^^^^^
config/.rubocop.yml
ruby
1inherit_from: .rubocop_todo.yml 2 3require: 4 - rubocop-rails 5 6AllCops: 7 TargetRubyVersion: 2.7 8 Exclude: 9 - 'config.ru' 10 - 'bin/**' 11 - 'lib/**' 12 - 'db/**/*' 13 - 'config/**/*' 14 - 'script/**/*' 15 - !ruby/regexp /old_and_unused.rb$/ 16 17AsciiComments: 18 Enabled: false 19 20ClassAndModuleChildren: 21 Enabled: nested 22 23Style/FrozenStringLiteralComment: 24 Enabled: false 25 26AndOr: 27 Enabled: false 28 29StringLiterals: 30 EnforcedStyle: single_quotes 31 32Style/Documentation: 33 Enabled: false 34 35Documentation: 36 Enabled: false
試したこと
Missing top-level class documentation comment.については下記を記述しておりますが除外されませんでした。
Style/FrozenStringLiteralComment:
Enabled: false
補足情報(FW/ツールのバージョンなど)
Ruby -ver 2.7.0 / Rails -ver 5.2.4.3
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。