Sha256: 55f97506eabfa646b0cc7195646f3b7a8e4a056e6266d49ad71ab817792878df
Contents?: true
Size: 1.44 KB
Versions: 3
Compression:
Stored size: 1.44 KB
Contents
module SCSSLint # Finds and aggregates all lints found by running the registered linters # against a set of SCSS files. class Runner attr_reader :lints, :files # @param config [Config] def initialize(config) @config = config @lints = [] @linters = LinterRegistry.linters.select { |linter| @config.linter_enabled?(linter) } @linters.map!(&:new) end # @param files [Array] def run(files) @files = files @files.each do |file| find_lints(file) end end private # @param file [String] def find_lints(file) engine = Engine.new(file: file) @linters.each do |linter| begin run_linter(linter, engine, file) rescue => error raise SCSSLint::Exceptions::LinterError, "#{linter.class} raised unexpected error linting file #{file}: " \ "'#{error.message}'", error.backtrace end end rescue Sass::SyntaxError => ex @lints << Lint.new(nil, ex.sass_filename, Location.new(ex.sass_line), "Syntax Error: #{ex}", :error) rescue FileEncodingError => ex @lints << Lint.new(nil, file, Location.new, ex.to_s, :error) end # For stubbing in tests. def run_linter(linter, engine, file) return if @config.excluded_file_for_linter?(file, linter) @lints += linter.run(engine, @config.linter_options(linter)) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
scss_lint-0.42.2 | lib/scss_lint/runner.rb |
scss_lint-0.42.1 | lib/scss_lint/runner.rb |
scss_lint-0.42.0 | lib/scss_lint/runner.rb |