Class: SCSSLint::Reporter
- Inherits:
-
Object
- Object
- SCSSLint::Reporter
- Defined in:
- lib/scss_lint/reporter.rb
Direct Known Subclasses
Defined Under Namespace
Classes: DefaultReporter, XMLReporter
Instance Attribute Summary collapse
-
#lints ⇒ Object
readonly
Returns the value of attribute lints.
Instance Method Summary collapse
-
#initialize(lints) ⇒ Reporter
constructor
A new instance of Reporter.
- #report_lints ⇒ Object
Constructor Details
#initialize(lints) ⇒ Reporter
Returns a new instance of Reporter.
5 6 7 |
# File 'lib/scss_lint/reporter.rb', line 5 def initialize(lints) @lints = lints end |
Instance Attribute Details
#lints ⇒ Object (readonly)
Returns the value of attribute lints.
3 4 5 |
# File 'lib/scss_lint/reporter.rb', line 3 def lints @lints end |
Instance Method Details
#report_lints ⇒ Object
9 10 11 |
# File 'lib/scss_lint/reporter.rb', line 9 def report_lints raise NotImplementedError, 'You must implement report_lints' end |