在我的.rubocop.yml中,有一些配置用于禁用某些样式警察。
Documentation:
Enabled: false
ClassAndModuleChildren:
Enabled: false
LineLength:
Max: 120
GuardClause:
Enabled: false
IfUnlessModifier:
Enabled: false
Run Code Online (Sandbox Code Playgroud)
rubocop在终端中运行时,它可以正常工作,并像往常一样禁用不需要的样式警察和皮棉,但是每次运行时,我都会收到针对所有禁用警察的警告错误:
Warning: no department given for Documentation.
有禁用警告消息的方法吗?
rubocop ×1