如果我写
if !File.exists('file_path') # create file end
我看到RuboCop警告:
Favour `unless` over `if` for negative conditions
不幸的是,在这种类型的上下文中使用unless在某些时候会导致我的认知混乱,我不是唯一的一个,请看这个issue。那么,我在.rubcopy.yml文件中放些什么来关闭这个警察呢?
unless
.rubcopy.yml
qv7cva1a1#
您必须将以下内容放入.rubocop.yml配置文件中:
.rubocop.yml
Style/NegatedIf: Enabled: false
要禁用以下Rubocop警告:
1条答案
按热度按时间qv7cva1a1#
您必须将以下内容放入
.rubocop.yml
配置文件中:要禁用以下Rubocop警告: