class SCSSLint::Reporter
Responsible for displaying lints to the user in some format.
Attributes
lints[R]
Public Class Methods
descendants()
click to toggle source
# File lib/scss_lint/reporter.rb, line 6 def self.descendants ObjectSpace.each_object(Class).select { |klass| klass < self } end
new(lints)
click to toggle source
# File lib/scss_lint/reporter.rb, line 10 def initialize(lints) @lints = lints end
Public Instance Methods
report_lints()
click to toggle source
# File lib/scss_lint/reporter.rb, line 14 def report_lints raise NotImplementedError, 'You must implement report_lints' end