Sha256: c26fe43a8cc684c94f4e4303ebb0d777986724d28072d534bf1d500945125360
Contents?: true
Size: 1.25 KB
Versions: 5
Compression:
Stored size: 1.25 KB
Contents
module SCSSLint class LinterError < StandardError; end class NoFilesError < StandardError; end # Finds and aggregates all lints found by running the registered linters # against a set of SCSS files. class Runner attr_reader :lints def initialize(config) @config = config @lints = [] @linters = LinterRegistry.linters.map(&:new) end def run(files) raise NoFilesError, 'No SCSS files specified' if files.empty? files.each do |file| find_lints(file) end @linters.each do |linter| @lints += linter.lints end end private def find_lints(file) engine = Engine.new(file) config = @config.preferred ? @config : Config.for_file(file) config ||= @config @linters.each do |linter| next unless config.linter_enabled?(linter) begin linter.run(engine, config.linter_options(linter)) rescue => error raise LinterError, "#{linter.class} raised unexpected error linting file #{file}: " << "'#{error.message}'", error.backtrace end end rescue Sass::SyntaxError => ex @lints << Lint.new(ex.sass_filename, ex.sass_line, ex.to_s, :error) end end end
Version data entries
5 entries across 5 versions & 1 rubygems