Separate: task 'BOOTLINT' and create module for 'load-config-grunt'

This commit is contained in:
Arno Roldao Junior 2016-06-23 11:45:26 -03:00
parent f3e425f2c1
commit ed7235e0e0

10
grunt-tasks/bootlint.js Normal file
View file

@ -0,0 +1,10 @@
'use strict';
module.exports = function (grunt) {
return {
options: {
relaxerror: ['W005']
},
files: ['pages/**/*.html', '*.html']
};
};