我想从rubocop中排除一个全局变量,但我找不到规则名称。我尝试添加
GlobalVars:
Exclude:
- redis
.rubocop.yml
但没有运气。
错误显示Do not introduce global variables.
使用 AllowedVariables
切换Exclude
。
in .rubocop.yml
:
GlobalVars:
AllowedVariables:
- $redis
请注意,变量名称需要前导美元符号。