lib/rubocop/cop/sorbet/sigils/false_sigil.rb in rubocop-sorbet-0.6.2 vs lib/rubocop/cop/sorbet/sigils/false_sigil.rb in rubocop-sorbet-0.6.3

- old
+ new

@@ -1,16 +1,16 @@ # frozen_string_literal: true -require 'rubocop' -require_relative 'has_sigil' +require "rubocop" +require_relative "has_sigil" module RuboCop module Cop module Sorbet # This cop makes the Sorbet `false` sigil mandatory in all files. class FalseSigil < HasSigil def minimum_strictness - 'false' + "false" end end end end end