Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Doesn't ouput NOTICE messages from AccessSniff.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucalanca committed Sep 23, 2015
1 parent 10c804b commit 140fbe6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gulp/tasks/accessibility.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ module.exports = function (gulp, $, config) {
return gulp.src(srcFiles)
.pipe($.a11y())
.pipe($.a11y.reporter())
.pipe($.accessibility());
.pipe($.accessibility({
reportLevels: {
notice: false
}
}));
};
};

0 comments on commit 140fbe6

Please sign in to comment.