lib/rubocop/cop/sorbet/sigils/false_sigil.rb
# frozen_string_literal: true 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' end end end end end