Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable Style/EmptyCaseCondition cop.
https://www.rubydoc.info/gems/rubocop/RuboCop/Cop/Style/EmptyCaseCondition rubocop/rubocop#3019 (comment) This allows empty case conditions to support the following: case when done? then :paid when expired? then :expired when expiring? then :expiring else :pending end Instead of requiring: if done? :paid elsif expired? :expired elsif expiring? :expiring else :pending end
- Loading branch information