Files
AdminLTE/build/grunt/bootlint.js
2016-10-26 09:30:06 -04:00

13 lines
220 B
JavaScript

// Validate Bootstrap HTML
'use strict';
module.exports = function (grunt) {
return {
options: {
relaxerror: ['W005']
},
// files: ['pages/**/*.html', '*.html']
files : ['starter.html']
};
};