Sha256: c4d7a11c7179794b26f34d18ac32c62d560e716fbfaf7c63761e806ab7994d25
Contents?: true
Size: 284 Bytes
Versions: 18
Compression:
Stored size: 284 Bytes
Contents
module SCSSLint # Responsible for displaying lints to the user in some format. class Reporter attr_reader :lints def initialize(lints) @lints = lints end def report_lints raise NotImplementedError, 'You must implement report_lints' end end end
Version data entries
18 entries across 18 versions & 1 rubygems