Class: SCSSLint::Runner
- Inherits:
-
Object
- Object
- SCSSLint::Runner
- Defined in:
- lib/scss_lint/runner.rb
Overview
Finds and aggregates all lints found by running the registered linters against a set of SCSS files.
Instance Attribute Summary collapse
-
#lints ⇒ Object
readonly
Returns the value of attribute lints.
Instance Method Summary collapse
-
#initialize(config) ⇒ Runner
constructor
A new instance of Runner.
- #run(files) ⇒ Object
Constructor Details
#initialize(config) ⇒ Runner
Returns a new instance of Runner.
8 9 10 11 12 |
# File 'lib/scss_lint/runner.rb', line 8 def initialize(config) @config = config @lints = [] @linters = LinterRegistry.linters.map(&:new) end |
Instance Attribute Details
#lints ⇒ Object (readonly)
Returns the value of attribute lints.
5 6 7 |
# File 'lib/scss_lint/runner.rb', line 5 def lints @lints end |
Instance Method Details
#run(files) ⇒ Object
15 16 17 18 19 |
# File 'lib/scss_lint/runner.rb', line 15 def run(files) files.each do |file| find_lints(file) end end |