Sha256: 6dbfc9fc387ae3c86863317b957a96e5be267a9ac4416877a3a78bf8fe87ff06
Contents?: true
Size: 749 Bytes
Versions: 12
Compression:
Stored size: 749 Bytes
Contents
# frozen_string_literal: true require "rubocop" require_relative "valid_sigil" module RuboCop module Cop module Sorbet # Makes the Sorbet typed sigil mandatory in all files. # # Options: # # * `SuggestedStrictness`: Sorbet strictness level suggested in offense messages (default: 'false') # * `MinimumStrictness`: If set, make offense if the strictness level in the file is below this one # # If a `MinimumStrictness` level is specified, it will be used in offense messages and autocorrect. class HasSigil < ValidSigil @registry = Cop.registry # So we can properly subclass this cop def require_sigil_on_all_files? true end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems