0

我在 rails 4 应用程序中使用 pre-commit 和 rubocop gem。我想逃避导致错误的报价检查 Prefer single-quoted strings when you don't need string interpolation or special symbols.

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

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

1 回答 1

3

你可以试试:

Style/StringLiterals:
  EnforcedStyle: double_quotes
于 2014-09-01T13:00:29.963 回答