module Spoom::Sorbet::Sigils

def change_sigil_in_files(path_list, new_strictness)

: (Array[String] path_list, String new_strictness) -> Array[String]
changes the sigil to have a new strictness in a list of files
def change_sigil_in_files(path_list, new_strictness)
  path_list.filter do |path|
    change_sigil_in_file(path, new_strictness)
  end
end