我想从rubocop排除全局变量,但找不到规则名称。
我尝试添加
GlobalVars:
Exclude:
- redis
到
.rubocop.yml
,但没有运气。错误显示
Do not introduce global variables.
最佳答案
用 Exclude
切换AllowedVariables
。
关于ruby - 如何从rubocop中排除全局变量?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44004319/