繁体   English   中英

Rails配置Rubocop

[英]Rails configure rubocop

我在Rails 4应用程序中使用pre-commit和rubocop gem。 我想避免使用引号检查, Prefer single-quoted strings when you don't need string interpolation or special symbols. ,会导致诸如“ Prefer single-quoted strings when you don't need string interpolation or special symbols.类的错误Prefer single-quoted strings when you don't need string interpolation or special symbols.

这是我已经在.rubocop.yml中尝试过的方法,但没有达到我想要的效果。

Style/StringLiterals:
 Enabled: false
Style/UnneededPercentQ:
 Enabled: false

您可以尝试:

Style/StringLiterals:
  EnforcedStyle: double_quotes

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM