2014-09-01 58 views
0

我在rails 4應用程序中使用pre-commit和rubocop gem。 我想逃避報價檢查這導致這樣的錯誤 Prefer single-quoted strings when you don't need string interpolation or special symbols.Rails配置rubocop

這就是我已經嘗試在.rubocop.yml,但它並沒有我想要的效果。

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

回答

2

你可以嘗試:

Style/StringLiterals: 
    EnforcedStyle: double_quotes 
+0

已經嘗試過了,沒有效果。但是,謝謝你的提示 – LogofaT 2014-09-01 13:02:54

+0

你的文件名是'.rubocop.yml'? – IS04 2014-09-01 13:16:06

+0

是的,它與前面的'.'一樣, – LogofaT 2014-09-01 13:18:36