Sha256: 58c1ef087e3256bbe2bad48986baabf890edf39504b4f3f4bc90266d6e0ddf19
Contents?: true
Size: 457 Bytes
Versions: 375
Compression:
Stored size: 457 Bytes
Contents
/*global helpers */ axe.addReporter('no-passes', function(results, options, callback) { 'use strict'; if (typeof options === 'function') { callback = options; options = {}; } // limit result processing to types we want to include in the output options.resultTypes = ['violations']; var out = helpers.processAggregate(results, options); callback({ ...helpers.getEnvironmentData(), toolOptions: options, violations: out.violations }); });
Version data entries
375 entries across 375 versions & 1 rubygems