From ed7235e0e022267d695628f066a0401d84aa5ea0 Mon Sep 17 00:00:00 2001 From: Arno Roldao Junior Date: Thu, 23 Jun 2016 11:45:26 -0300 Subject: [PATCH] Separate: task 'BOOTLINT' and create module for 'load-config-grunt' --- grunt-tasks/bootlint.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 grunt-tasks/bootlint.js diff --git a/grunt-tasks/bootlint.js b/grunt-tasks/bootlint.js new file mode 100644 index 000000000..2c442ec3d --- /dev/null +++ b/grunt-tasks/bootlint.js @@ -0,0 +1,10 @@ +'use strict'; + +module.exports = function (grunt) { + return { + options: { + relaxerror: ['W005'] + }, + files: ['pages/**/*.html', '*.html'] + }; +};