如何对不包含else子句的案例陈述静音Rubocop警告?我在.rubocop.yml文件中尝试了以下值,但没有成功:
Style/MissingElse:
Enabled: false
我的案例陈述如下:
case value
when 4..9 then x
when 10..15 then y
when 16..22 then z
end
由于测试的值不能超出4 - 22的范围,我在添加else子句时看不到什么。
答案 0 :(得分:0)
不要全局禁用它,将其压制到位:
# rubocop:disable Style/MissingElse
case value
when 4..9 then x
when 10..15 then y
when 16..22 then z
end
# rubocop:enable Style/MissingElse