lib/rubocop/cop/sorbet/sigils/ignore_sigil.rb in rubocop-sorbet-0.6.2 vs lib/rubocop/cop/sorbet/sigils/ignore_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 `ignore` sigil mandatory in all files. class IgnoreSigil < HasSigil def minimum_strictness - 'ignore' + "ignore" end end end end end