我想从rubocop中排除一个全局变量,但我无法找到规则名称。 我尝试添加
GlobalVars:
Exclude:
- redis
到.rubocop.yml
但没有运气。
错误说Do not introduce global variables.
答案 0 :(得分:13)
使用Exclude
切换AllowedVariables
。
来源:https://github.com/bbatsov/rubocop/blob/master/lib/rubocop/cop/style/global_vars.rb#L47
答案 1 :(得分:0)
在.rubocop.yml
中:
GlobalVars:
AllowedVariables:
- $redis
请注意,变量名需要前导美元符号。