我在rails 4应用程序中使用预提交和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
您可以尝试:
Style/StringLiterals:
EnforcedStyle: double_quotes