如何从 rubocop 中排除全局变量?

How can I exclude a global variable from rubocop?

我想从 rubocop 中排除一个全局变量,但找不到规则名称。 我尝试添加

GlobalVars:
  Exclude:
    - redis

.rubocop.yml 但运气不好。

错误显示 Do not introduce global variables.

Exclude 切换为 AllowedVariables

.rubocop.yml中:

GlobalVars:
  AllowedVariables:
    - $redis

请注意,变量名需要以美元符号开头。